commit d1cc7eb25dae0d9ca7063e6fe4b376cb6b5ec184 parent 7d46473e077b03a358fbdb1572c798976b0c8f02 Author: d.levin256@gmail.com <d.levin256@gmail.com> Date: Thu, 21 Dec 2023 13:09:52 +0000 is_complex Diffstat:
M | include/kfr/simd/complex.hpp | | | 4 | ++++ |
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/include/kfr/simd/complex.hpp b/include/kfr/simd/complex.hpp @@ -437,6 +437,10 @@ struct vec_of_complex using type = vec<complex<T>, N>; }; } // namespace CMT_ARCH_NAME + +template <typename T> +constexpr bool is_complex = internal::is_complex_impl<T>::value; + } // namespace kfr namespace std