Skip to content

Commit 869c9da

Browse files
authored
bench: fix swapped dtypes in size benchmarks
PR-URL: #11648 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 73e7bcf commit 869c9da

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

lib/node_modules/@stdlib/ndarray/empty/benchmark/benchmark.size.float32.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function createBenchmark( len ) {
5252
var i;
5353

5454
opts = {
55-
'dtype': 'float64'
55+
'dtype': 'float32'
5656
};
5757

5858
b.tic();

lib/node_modules/@stdlib/ndarray/empty/benchmark/benchmark.size.float64.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function createBenchmark( len ) {
5252
var i;
5353

5454
opts = {
55-
'dtype': 'float32'
55+
'dtype': 'float64'
5656
};
5757

5858
b.tic();

lib/node_modules/@stdlib/ndarray/ones/benchmark/benchmark.size.float32.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function createBenchmark( len ) {
5252
var i;
5353

5454
opts = {
55-
'dtype': 'float64'
55+
'dtype': 'float32'
5656
};
5757

5858
b.tic();

lib/node_modules/@stdlib/ndarray/ones/benchmark/benchmark.size.float64.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function createBenchmark( len ) {
5252
var i;
5353

5454
opts = {
55-
'dtype': 'float32'
55+
'dtype': 'float64'
5656
};
5757

5858
b.tic();

lib/node_modules/@stdlib/ndarray/zeros/benchmark/benchmark.size.float32.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function createBenchmark( len ) {
5252
var i;
5353

5454
opts = {
55-
'dtype': 'float64'
55+
'dtype': 'float32'
5656
};
5757

5858
b.tic();

lib/node_modules/@stdlib/ndarray/zeros/benchmark/benchmark.size.float64.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function createBenchmark( len ) {
5252
var i;
5353

5454
opts = {
55-
'dtype': 'float32'
55+
'dtype': 'float64'
5656
};
5757

5858
b.tic();

0 commit comments

Comments
 (0)