From 64e20582ad9e073c841660515407fcdb21db22d3 Mon Sep 17 00:00:00 2001 From: Won-Kyu Park Date: Thu, 1 Feb 2024 13:16:26 +0900 Subject: [PATCH] add missing definitions accidentally removed by mistake in PR #876 --- include/SIMD.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/SIMD.h b/include/SIMD.h index a2ac1a9ae..d559e9f55 100644 --- a/include/SIMD.h +++ b/include/SIMD.h @@ -64,6 +64,16 @@ template <> struct InstrFloatTraits typedef __m128d vec_t; }; +template <> struct InstrFloatTraits +{ + typedef float vec_t; +}; + +template <> struct InstrFloatTraits +{ + typedef double vec_t; +}; + template struct FTOITraits {