TECHNICAL JOURNAL

AI、Tracing、Profiling 与系统工程的长期记录

Archive 66 篇文章
Latest 2026-05-24 最近更新
ReadingNotes

系统设计

AI CodeReview %%{ init: { 'flowchart': { 'curve': 'basis' } } }%% flowchart LR webhook[gitlab webhook] subgraph AI_CodeReview [AI CodeReview] event[push or meger request] diff[diff text] sys_prompt[system prompt] result[result & score] event --> diff end …

6 分钟阅读2800 字
Computer

Performance Analysis Tools

在 Linux 性能观测中,Tracing 侧重于捕捉事件的因果顺序与详细流程,而 Profiling 侧重于统计资源的宏观消耗热点。二者相辅相成。 以下工具为工作中接触和使用过的。参考阅读中提供了更多工具和资源,供进一步探索。 内核与系统 …

3 分钟阅读1200 字
AI

AI Agent

Claude code 安装 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 # 安装 nvm curl -o- …

8 分钟阅读4000 字

Browse by topic

按主题进入文章

Latest writing

最新文章

Computer

Trace Event

Google JSON 格式详解(兼容 Trace Viewer / Perfetto) 一、事件通用字段 google 的 trace-viewer 项目,合并到了 catapult 中,工具 perfetto 打算替换 Trace Viewer。 字段名 含义 备注 ph phase,事件类型 关键字段,决定事件 …

3 分钟阅读1400 字
Computer

MPI 基础知识

MPI (Message Passing Interface) C/C++: mpi,h -> libmpi.so 编译:mpicxx -o test_mpi_cpp test_mpi.cpp -lmpi Fortran: mpif.h, 或者使用模板mpiuse mpi -> …

6 分钟阅读2700 字
AI

GPU_碎片笔记

N卡 / A卡 / OpenCL 对比 Nvidia/CUDA AMD/HIP OpenCL Streaming Multiprocessor (SM) Compute Unit (CU) Compute Unit Thread Block Workgroup Work-group Shared Memory …

3 分钟阅读1500 字
0%