Vectorization - CI/CD用語集の定義
ベクトル化とは、SIMD レジスタを介して各命令が一度に複数のデータ要素を操作するようにループを変換する compiler の最適化 (または手動の手法) で、compiler が並べ替え可能だと証明できるデータ並列なコードでスループットを大幅に高めます。
関連ガイド
SIMD - CI/CD Glossary DefinitionSIMD executes one instruction across multiple data lanes at once, the hardware feature vectorized code target…
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…
Optimization Level - CI/CD Glossary DefinitionAn optimization level (-O0 to -O3, -Os) tells the compiler how aggressively to optimize, trading compile time…