Files
trigdx/benchmarks/benchmark_lookup_avx.cpp
2025-08-01 14:59:27 +02:00

14 lines
358 B
C++

#include <trigdx/lookup_avx.hpp>
#include "benchmark_utils.hpp"
int main() {
benchmark_sinf<LookupAVXBackend<16384>>();
benchmark_cosf<LookupAVXBackend<16384>>();
benchmark_sincosf<LookupAVXBackend<16384>>();
benchmark_sinf<LookupAVXBackend<32768>>();
benchmark_cosf<LookupAVXBackend<32768>>();
benchmark_sincosf<LookupAVXBackend<32768>>();
}