SIMD - CI/CD用語集の定義
SIMD (Single Instruction, Multiple Data) とは、一つの命令が幅広いレジスタに詰められた複数のデータ要素を操作する CPU の能力です (SSE、AVX、NEON)。ベクトル化する compiler や手書きの intrinsic が、高スループットな数値作業のためにこれを狙います。
関連ガイド
Vectorization - CI/CD Glossary DefinitionVectorization rewrites a scalar loop to process several elements per instruction using SIMD, multiplying thro…
Inlining - CI/CD Glossary DefinitionInlining replaces a function call with the function’s body, removing call overhead and unlocking further opti…
Cache Line - CI/CD Glossary DefinitionA cache line is the fixed-size block (often 64 bytes) the CPU moves between memory and cache as a unit - the…