Skip to content

Commit 570e5cb

Browse files
authored
Merge pull request numpy#26637 from ngoldbaum/bench-linalg-fix
BUG: fix incorrect randomized parameterization in bench_linalg
2 parents ba7c55c + 5ce234e commit 570e5cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmarks/benchmarks/bench_linalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def time_tensordot_a_b_axes_1_0_0_1(self):
7272

7373

7474
class Linalg(Benchmark):
75-
params = set(TYPES1) - set(['float16'])
75+
params = sorted(list(set(TYPES1) - set(['float16'])))
7676
param_names = ['dtype']
7777

7878
def setup(self, typename):

0 commit comments

Comments
 (0)