Intel® ISA Extensions
Use hardware-based isolation and memory encryption to provide more code protection in your solutions.

about SIMD code

llodds1
Beginner
391 Views
Just write some SIMD code instead of making the compiler generate the SIMD code automatically, but how do I enable the icc compiler to compile with the code?
0 Kudos
2 Replies
Bernard
Valued Contributor I
391 Views
Write inline SSE assembly and compile it with Intel compiler.
0 Kudos
Thomas_W_Intel
Employee
391 Views
If you don't want to go down the path of writing in assembly language, there is also same kind of wrapper called "intrinsics" that looks and feels like a function call but are translated directly to assembly. A description is given in this article. For a recent example with AVX2, you might be interested in my blog.
0 Kudos
Reply