Files
trigdx/include/trigdx/trigdx.hpp
Wiebe van Breukelen 0cbefb77b7 Fix CMake interface include paths (#14)
* Fixed include path

* Formatting

* Remove lookup_constexpr.hpp
2025-08-14 09:34:27 +02:00

19 lines
341 B
C++

#pragma once
#include <trigdx/trigdx_config.hpp>
#include <trigdx/lookup.hpp>
#include <trigdx/lookup_avx.hpp>
#include <trigdx/reference.hpp>
#if defined(TRIGDX_USE_MKL)
#include <trigdx/mkl.hpp>
#endif
#if defined(TRIGDX_USE_GPU)
#include <trigdx/gpu.hpp>
#endif
#if defined(TRIGDX_USE_XSIMD)
#include <trigdx/lookup_xsimd.hpp>
#endif