Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
$pwd:

performance-patterns

// Detect and fix x86/C/C++ performance patterns from source code or profiling output (perf, VTune, flamegraphs). Invoke when the user asks to optimize, review for performance, or write new SIMD/vectorized code — even without profiling data. Trigger on: serial accumulator loops, narrow SIMD (xmm/ymm that could be ymm/zmm), _mm* intrinsics, HITM/cmpxchg clusters, false sharing, missing restrict or vzeroupper, hot symbol inside a system library (.so) that may have a version gap, or any request to write a fast reduction, dot product, or CPU-dispatched function. Patterns: serial accumulator, TTAS spinlock, SIMD upconversion (zipper), false sharing, per-CPU stats, missing vzeroupper, missing restrict, CPU dispatch, library version upgrade, fast CRC32C (crc32c function name trigger, single-accumulator _mm_crc32 loop, table-lookup CRC32C), known algorithms (Cosine Similarity, Hamming Distance, Jaccard Distance), SIMD sort for numeric primitives (float/double/int32_t/uint32_t/int64_t/uint64_t via x86-simd-sort).

$ git log --oneline --stat
stars:4
forks:2
updated:2026년 5월 29일 18:46
파일 탐색기
24 개 파일
SKILL.md
readonly