kokkos / simd-math

Library for length agnostic SIMD intrinsic support and the corresponding math operations
Other
20 stars 10 forks source link

templated simd constructor with unused flags #30

Open fnrizzi opened 3 years ago

fnrizzi commented 3 years ago

One of the simd constructor is templated but the template doesn't seem to be used:

template <class Flags>
  SIMD_ALWAYS_INLINE inline simd(double const* ptr, Flags /*flags*/)
    :m_value(_mm_loadu_pd(ptr))
  {}