Question

Can you give me a direction to any site covering information about intrinsics? I searched many sites but they are listing only names. Searched assembly sites but they have only assembly instructions(very similar names but no exact) What I need is something like:

 GCC(g++) Intrinsics for x64
          ║
          ║
          ╚══╦═════════╡ Comparison functions
             ║
             ║
             ╠═════════╡ Special functions
             ║
             ║
             ╠══════╦══╡ Arithmetic functions
             ║      ║
             ║      ║
             ║      ║
             ║      ╠════╡ _mm256_mul_ps (selecting this opens an explanation)
             ║      ║

 _mm256_mul_ps: Multiplication of float32 vectors. Takes two __m256 arguments,
                multiplies those vectors and returns __m256 type.

Thank you.

Était-ce utile?

Autres conseils

Intrinsics are not part of the C++ language. If you want the intrinsics provided by your compiler, consult the documentation for your compiler.

For instance, the Visual Studio intrinsics are available on MSDN.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top