Skip to content

Commit

Permalink
Correct name identifier for sve functions in benchmark tool
Browse files Browse the repository at this point in the history
Used to be scalar, now is sve.
  • Loading branch information
joanaxcruz committed Oct 18, 2024
1 parent 65bdfa0 commit 46abb98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/benchmarks/benchmark_callers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
// Generate benchmarks for SVE function implementations
#ifdef ENABLE_SVECTOR_BENCHMARKS
#define BENCH_SINGLE_SVE(fun, ulp, min, max) \
BENCH(Sleef_##fun##fx_##ulp##sve, scalarf, min, max);
BENCH(Sleef_##fun##fx_##ulp##sve, svef, min, max);
#define BENCH_DOUBLE_SVE(fun, ulp, min, max) \
BENCH(Sleef_##fun##dx_##ulp##sve, scalard, min, max);
BENCH(Sleef_##fun##dx_##ulp##sve, sved, min, max);
#define BENCH_SVE(fun, ulp, min, max) \
BENCH_SINGLE_SVE(fun, ulp, min, max); \
BENCH_DOUBLE_SVE(fun, ulp, min, max);
Expand Down

0 comments on commit 46abb98

Please sign in to comment.