一键导入
cuda-performance
Use when reviewing, optimizing, or debugging CUDA performance, especially LHCb Allen trigger software or GPU-resident reconstruction code.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when reviewing, optimizing, or debugging CUDA performance, especially LHCb Allen trigger software or GPU-resident reconstruction code.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when preparing postdoc applications, research statements, cover letters, CV bullets, interview answers, short talks, emails, or role-fit analysis for HEP, LHCb, trigger/software, data science, or research-software roles.
Use when reviewing code, tests, scripts, notebooks, configuration, diffs, or physics-analysis workflows for correctness, maintainability, performance, reproducibility, or scientific validity.
Use when implementing features, fixing bugs, refactoring, updating tests/docs/config, or making any non-trivial repository change.
| name | cuda-performance |
| description | Use when reviewing, optimizing, or debugging CUDA performance, especially LHCb Allen trigger software or GPU-resident reconstruction code. |
Measure before optimizing. A useful change is localized, validated, and compatible with the execution model.
Identify GPU model, driver/CUDA, build, exact benchmark command, input dataset/event count, baseline throughput or latency, target kernel/algorithm, memory layout, stream behavior, correctness tolerance, and profiling evidence.
For Allen, also identify sequence, algorithm, build directory, HLT1 throughput impact, Allen-managed buffers, stream ownership, and whether the change adds allocations, synchronization, or external libraries.
cudaDeviceSynchronize() or device allocation in hot paths.Check indexing, bounds, coalescing, shared memory, register pressure, occupancy, warp divergence, atomics, host-device transfers, launch count, hidden synchronization, temporary allocations, data layout conversions, and numerical precision changes.
Diagnosis:
- ...
Likely bottleneck:
- ...
Recommended change:
- ...
Allen compatibility:
- ...
Correctness validation:
- ...
Benchmark:
- GPU:
- Command:
- Input:
- Baseline:
- New result:
- Delta:
Risks:
- ...