Skip to content

Commit

Permalink
add missing definitions accidentally removed by mistake in PR bitsand…
Browse files Browse the repository at this point in the history
  • Loading branch information
wkpark committed Feb 1, 2024
1 parent 1d502d7 commit 64e2058
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions include/SIMD.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,16 @@ template <> struct InstrFloatTraits<SSE, double>
typedef __m128d vec_t;
};

template <> struct InstrFloatTraits<Scalar, float>
{
typedef float vec_t;
};

template <> struct InstrFloatTraits<Scalar, double>
{
typedef double vec_t;
};

template <InstrSet I, typename T>
struct FTOITraits
{
Expand Down

0 comments on commit 64e2058

Please sign in to comment.