summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
authorRaghuveer Devulapalli <raghuveer.devulapalli@intel.com>2021-10-18 09:45:09 -0700
committerRaghuveer Devulapalli <raghuveer.devulapalli@intel.com>2022-01-14 10:16:13 -0800
commit61dec07ba52c0aafe1149e43bb22ffd0cb4b06c9 (patch)
treec0d368ab6c3ccd8ff7bdc45109c66ce9182b7551 /benchmarks
parent0eb1a92f299948d1aeaec1dfdbd3abd425a46700 (diff)
downloadnumpy-61dec07ba52c0aafe1149e43bb22ffd0cb4b06c9.tar.gz
BENCH: Add benchmarks for 32-bit data type sorting
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/benchmarks/bench_function_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/benchmarks/bench_function_base.py b/benchmarks/benchmarks/bench_function_base.py
index 062843d10..ac6df784d 100644
--- a/benchmarks/benchmarks/bench_function_base.py
+++ b/benchmarks/benchmarks/bench_function_base.py
@@ -222,7 +222,7 @@ class Sort(Benchmark):
# In NumPy 1.17 and newer, 'merge' can be one of several
# stable sorts, it isn't necessarily merge sort.
['quick', 'merge', 'heap'],
- ['float64', 'int64', 'int16'],
+ ['float64', 'int64', 'float32', 'uint32', 'int32', 'int16'],
[
('random',),
('ordered',),