Skip to content

Commit 03d68a8

Browse files
committed
Auto-generated commit
1 parent 97ac99d commit 03d68a8

7 files changed

Lines changed: 7 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -864,6 +864,7 @@ A total of 49 issues were closed in this release:
864864

865865
<details>
866866

867+
- [`869c9da`](https://github.com/stdlib-js/stdlib/commit/869c9da0b2ec6d3a4f9bfd7806a32eeb9d5c973f) - **bench:** fix swapped dtypes in size benchmarks [(#11648)](https://github.com/stdlib-js/stdlib/pull/11648) _(by Philipp Burckhardt)_
867868
- [`73e7bcf`](https://github.com/stdlib-js/stdlib/commit/73e7bcf003e6ff43f444494447445cb17384ccd4) - **docs:** add dtype section _(by Athan Reines)_
868869
- [`e01bf06`](https://github.com/stdlib-js/stdlib/commit/e01bf0651d5a7073bc92913e1cd0cadcba8bd75a) - **docs:** update copy _(by Athan Reines)_
869870
- [`0f96d30`](https://github.com/stdlib-js/stdlib/commit/0f96d3092e11bed46e6cd83efd770c2d6fa77af1) - **docs:** update namespace table of contents [(#11637)](https://github.com/stdlib-js/stdlib/pull/11637) _(by stdlib-bot, Philipp Burckhardt)_

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();

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();

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();

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();

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();

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)