Skip to content

Commit be5b1c2

Browse files
author
Raghuveer Devulapalli
committed
Add benchmarks for uint64_t and double argsort
1 parent 469a4e4 commit be5b1c2

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

benchmarks/bench_argsort.hpp

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,11 @@ static void avx512argsort(benchmark::State &state, Args &&...args)
8484
}
8585
}
8686

87-
BENCH(avx512argsort, int64_t)
88-
BENCH(stdargsort, int64_t)
87+
#define BENCH_BOTH(type)\
88+
BENCH(avx512argsort, type)\
89+
BENCH(stdargsort, type)\
90+
91+
BENCH_BOTH(int64_t)
92+
BENCH_BOTH(uint64_t)
93+
BENCH_BOTH(double)
94+

0 commit comments

Comments
 (0)