Happen to see this. In the code below, looks template parameters A and T are reversed and SFINAE may silently skip this function and fallback to non-optimized implementation when calling scatter<A>(...).
https://github.com/xtensor-stack/xsimd/blob/master/include/xsimd/arch/xsimd_avx512f.hpp#L1376
Is it possible to catch similar issues as compile time?
Happen to see this. In the code below, looks template parameters
AandTare reversed and SFINAE may silently skip this function and fallback to non-optimized implementation when callingscatter<A>(...).https://github.com/xtensor-stack/xsimd/blob/master/include/xsimd/arch/xsimd_avx512f.hpp#L1376
Is it possible to catch similar issues as compile time?