Files
trigdx/benchmarks/benchmark_mkl.cpp
Bram Veenboer a189a80cc2 Initial commit
2025-08-01 14:59:27 +02:00

10 lines
173 B
C++

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