Fix issue when building with TRIGDX_USE_GPU=1

This commit is contained in:
Bram Veenboer
2025-08-12 14:59:36 +02:00
parent 0e2d9862d5
commit b936b3998e
2 changed files with 6 additions and 6 deletions

View File

@@ -6,14 +6,14 @@
#include <trigdx/lookup.hpp>
#include <trigdx/lookup_avx.hpp>
#if TRIGDX_USE_MKL
#if defined(TRIGDX_USE_MKL)
#include <trigdx/mkl.hpp>
#endif
#if TRIGDX_USE_GPU
#if defined(TRIGDX_USE_GPU)
#include <trigdx/gpu.hpp>
#endif
#if TRIGDX_USE_XSIMD
#if defined(TRIGDX_USE_XSIMD)
#include <trigdx/lookup_xsimd.hpp>
#endif