xtensor icon indicating copy to clipboard operation
xtensor copied to clipboard

how to use mingw to enable XTENSOR_USE_XSIMD in windows

Open N-damo opened this issue 3 years ago • 0 comments

In window, if you defined XTENSOR_USE_XSIMD, you must also specify which instruction set you target: target_compile_options(target_name PRIVATE /arch:AVX2)

OR

target_compile_options(target_name PRIVATE /arch:AVX)

OR

target_compile_options(target_name PRIVATE /arch:ARMv7VE)

I suggest the above tutorial is for msvc, how to configure mingw to enable xsimd work? thanks

N-damo avatar Dec 08 '22 06:12 N-damo