Files
trigdx/benchmarks/benchmark_lookup.cpp
2025-08-12 14:04:13 +02:00

14 lines
336 B
C++

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