Fix build issue with gcc on AVX512

This commit is contained in:
Matthias Hochsteger 2024-06-10 10:48:16 +02:00
parent bc392abb81
commit f5c9b87ee7

View File

@ -111,7 +111,7 @@ namespace ngcore
template <typename Function>
void SIMD_function (const Function & func, std::true_type)
{
data = (__m512){ func(7), func(6), func(5), func(4),
data = (__m512d){ func(7), func(6), func(5), func(4),
func(3), func(2), func(1), func(0) };
}