Add trigdx_config.hpp and trigdx.hpp header files

This commit is contained in:
Bram Veenboer
2025-08-12 13:54:13 +02:00
parent e9a74ef283
commit 2f39c5c86e
10 changed files with 38 additions and 6 deletions

19
include/trigdx/trigdx.hpp Normal file
View File

@@ -0,0 +1,19 @@
#pragma once
#include <trigdx/trigdx_config.hpp>
#include <trigdx/reference.hpp>
#include <trigdx/lookup.hpp>
#include <trigdx/lookup_avx.hpp>
#if TRIGDX_USE_MKL
#include <trigdx/mkl.hpp>
#endif
#if TRIGDX_USE_GPU
#include <trigdx/gpu.hpp>
#endif
#if TRIGDX_USE_XSIMD
#include <trigdx/lookup_xsimd.hpp>
#endif