Skip to content
Snippets Groups Projects
Unverified Commit a38e73f9 authored by Sam Yates's avatar Sam Yates Committed by GitHub
Browse files

Fix simd/native.hpp header after move to public includes (#525)

Fixes issue #524.
parent 0c9906bd
No related branches found
No related tags found
No related merge requests found
......@@ -45,13 +45,13 @@ template <> struct native<T, N> {\
#if defined(__AVX2__) && defined(__FMA__)
#include <simd/avx.hpp>
#include <arbor/simd/avx.hpp>
ARB_DEF_NATIVE_SIMD_(int, 4, avx2)
ARB_DEF_NATIVE_SIMD_(double, 4, avx2)
#elif defined(__AVX__)
#include <simd/avx.hpp>
#include <arbor/simd/avx.hpp>
ARB_DEF_NATIVE_SIMD_(int, 4, avx)
ARB_DEF_NATIVE_SIMD_(double, 4, avx)
......@@ -59,7 +59,7 @@ ARB_DEF_NATIVE_SIMD_(double, 4, avx)
#if defined(__AVX512F__)
#include <simd/avx512.hpp>
#include <arbor/simd/avx512.hpp>
ARB_DEF_NATIVE_SIMD_(int, 8, avx512)
ARB_DEF_NATIVE_SIMD_(double, 8, avx512)
......
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