SIMD Vectorization
Discussions center on SIMD instructions, compiler auto-vectorization, intrinsics, and language support for efficient vectorized operations in programming.
Activity Over Time
Top Contributors
Keywords
Sample Comments
Does your implementation support vectorized SIMD or SSE instructions?
There are. That's the reason we got instruction set extensions like simd.
Maybe std::simd could be worked into this.
I don't think so (for example Chapel does SIMD).
SIMD instructions are already architecture dependent
Looks interesting, thanks! Just curious, any plans for supporting SIMD, similar to gcc's vector extensions ?
Don't things get more complicated than that if you are expecting certain architecture features like SIMD?
Any theories why the compiler didn't manage to use SIMD without the manual SIMD code?
SIMD being an exception still (unless maybe Intel compiler + C/C++ + proper annotations)
Are there languages that "solve" SIMD?