Skip to content

Commit 36c9295

Browse files
committed
fix benchmark
1 parent 66231bf commit 36c9295

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tests/benchmark/spaces_benchmarks/bm_spaces.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#include "VecSim/spaces/functions/SSE3.h"
2626
#include "VecSim/spaces/functions/SSE.h"
2727
#include "VecSim/spaces/functions/NEON.h"
28+
#include "VecSim/spaces/functions/NEON_HP.h"
2829
#include "VecSim/spaces/functions/SVE.h"
2930
#include "VecSim/spaces/functions/SVE2.h"
3031
#include "bm_macros.h"

tests/benchmark/spaces_benchmarks/bm_spaces_fp16.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ cpu_features::Aarch64Features opt = cpu_features::GetAarch64Info().features;
1919
// NEON implementation for ARMv8-a
2020
#ifdef OPT_NEON_HP
2121
bool neon_supported = opt.asimdhp; // ARMv8-a always supports NEON
22-
INITIALIZE_BENCHMARKS_SET_L2_IP(BM_VecSimSpaces_FP16, FP16, NEON, 32, neon_supported);
22+
INITIALIZE_BENCHMARKS_SET_L2_IP(BM_VecSimSpaces_FP16, FP16, NEON_HP, 32, neon_supported);
2323
#endif
2424
#ifdef OPT_SVE
2525
bool sve_supported = opt.sve; // Check for SVE support

0 commit comments

Comments
 (0)