Meet the SIMD Type
A vector of values handled together.
One Value at a Time Is Slow
A normal Int holds a single number, so math happens one value at a time. For AI you often need to crunch many numbers at once.
Meet SIMD
SIMD means Single Instruction, Multiple Data: one operation applied to a whole pack of numbers in a single step.
All lessons in this course
- Meet the SIMD Type
- Element-Wise SIMD Math
- Choosing a SIMD Width
- Vectorizing a Loop