xtensor
xtensor copied to clipboard
how to use mingw to enable XTENSOR_USE_XSIMD in windows
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