Master the fundamental concepts of simd & vectorization through this focused micro-challenge.
A fair SIMD vs scalar shootout fixes clock, array size, and correctness checks. Report speedup distributions across multiple sizes (L1-fit, L2-fit, RAM) because memory hierarchy changes the winner.
cLoading…
perf stat)For example, AVX2 might show 8x speedup in L1 but only 2x in RAM when DRAM bandwidth caps both paths.
For this exercise, you will run a suite of kernels (add, dot, memset) across scalar, SSE2, and AVX2 implementations. This task asks you to plot speedup vs size and explain where SIMD stops helping, closing the vectorization subtrack with measured evidence.
Keep the relevant datasheet, ISA manual, or architecture textbook chapter open while you implement. When your output disagrees with the reference trace on the same program, the bug is usually a mis-decoded opcode, a stale register read, or a flag bit left unchanged after arithmetic.
For this exercise, you will use those habits while implementing the requirement in the starter code. Microarchitectural product names change across CPU generations, but the control ideas (fetch, bypass, cache lines, vector lanes) stay stable enough to debug from first principles.
Comprehensive SIMD vs scalar benchmark suite.
Requirements:
Three hints are available for this task, revealed one at a time inside the code workspace so you can struggle productively before seeing them.
All starter code and reference implementations are available for your local setup.
View on Github