Skip to content
Snippets Groups Projects
Commit f3be6dff authored by Sam Yates's avatar Sam Yates Committed by Ben Cumming
Browse files

Fix broken namespace renaming in SIMD (#453)

parent 2dff9c41
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
// detail concerning the approximations. // detail concerning the approximations.
namespace arb { namespace arb {
namespace simd {
namespace simd_detail { namespace simd_detail {
// Exponential: // Exponential:
...@@ -81,4 +82,5 @@ constexpr double Q3log = 4.52279145837532221105e1; ...@@ -81,4 +82,5 @@ constexpr double Q3log = 4.52279145837532221105e1;
constexpr double Q4log = 1.12873587189167450590e1; constexpr double Q4log = 1.12873587189167450590e1;
} // namespace simd_detail } // namespace simd_detail
} // namespace simd
} // namespace arb } // namespace arb
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
#include <simd/implbase.hpp> #include <simd/implbase.hpp>
namespace arb { namespace arb {
namespace simsimd { namespace simd {
namespace simd_detail { namespace simd_detail {
struct avx_int4; struct avx_int4;
......
...@@ -33,11 +33,13 @@ struct native { ...@@ -33,11 +33,13 @@ struct native {
#define ARB_DEF_NATIVE_SIMD_(T, N, A)\ #define ARB_DEF_NATIVE_SIMD_(T, N, A)\
namespace arb {\ namespace arb {\
namespace simd {\
namespace simd_abi {\ namespace simd_abi {\
template <> struct native<T, N> {\ template <> struct native<T, N> {\
using type = typename A<T, N>::type;\ using type = typename A<T, N>::type;\
};\ };\
}\ }\
}\
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment