On Tuesday, 15 May 2012 at 14:28:51 UTC, Alex Rønne Petersen
wrote:
On 15-05-2012 16:27, Pavel Umnikov wrote:
Hello everyone,
I am just recently jumped to D Language from C++ and want to
rewrite my
current engine from scratch using this language. My math and
physics
libraries were written utilizing many SSE functions(and AVX if
such CPU
is presented). Can I use SSE/AVX code in D? SSE/AVX direct
intrinsics or
Assember inlining with SSE/AVX?
Thanks!
Have a look at these:
* http://dlang.org/phobos/core_cpuid.html
* http://dlang.org/iasm.html
* http://dlang.org/simd.html
Thank you, Alex!