diff options
author | Touqir Sajed <touqir@ualberta.ca> | 2021-01-19 16:19:11 +0600 |
---|---|---|
committer | Touqir Sajed <touqir@ualberta.ca> | 2021-01-19 16:19:11 +0600 |
commit | 15cf37d5394e69fc1847b1efa8d5253de4890cbe (patch) | |
tree | a6ae6ec2c27eeac49f51b7ebc1e932629b8000e6 /benchmarks | |
parent | c716a120cba2c8c2b972433604b085d87122823e (diff) | |
download | numpy-15cf37d5394e69fc1847b1efa8d5253de4890cbe.tar.gz |
Merged count_nonzero_int16/int32/int64 into count_nonzero_int and added benchmarks
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/benchmarks/bench_core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/benchmarks/bench_core.py b/benchmarks/benchmarks/bench_core.py index 1c028542d..279c6f475 100644 --- a/benchmarks/benchmarks/bench_core.py +++ b/benchmarks/benchmarks/bench_core.py @@ -136,7 +136,7 @@ class CountNonzero(Benchmark): params = [ [1, 2, 3], [100, 10000, 1000000], - [bool, int, str, object] + [bool, np.int8, np.int16, np.int32, np.int64, str, object] ] def setup(self, numaxes, size, dtype): |