Skip to content

Commit 68d0c52

Browse files
committed
Auto-generated commit
1 parent f06b709 commit 68d0c52

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

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

261261
<details>
262262

263+
- [`5bfa5e8`](https://github.com/stdlib-js/stdlib/commit/5bfa5e8ac36fe7abb9c8799560fb90c787999360) - **bench:** refactor to use string interpolation in `array/base/zeros4d` [(#9277)](https://github.com/stdlib-js/stdlib/pull/9277) _(by anee3)_
263264
- [`1c08d9e`](https://github.com/stdlib-js/stdlib/commit/1c08d9e6efa0af32176a2fcfbbbd4a10002cd66c) - **bench:** refactor to use string interpolation in `array/base/zeros5d` [(#9266)](https://github.com/stdlib-js/stdlib/pull/9266) _(by anee3, Athan Reines)_
264265
- [`fff219f`](https://github.com/stdlib-js/stdlib/commit/fff219fbf68d726e25e56c304bbd8b4274f0b2df) - **bench:** refactor to use string interpolation in `array/base/filled3d-by` [(#9185)](https://github.com/stdlib-js/stdlib/pull/9185) _(by Rohit R Bhat)_
265266
- [`6338030`](https://github.com/stdlib-js/stdlib/commit/63380300fa123617bf4d460483ab1e70d2611da3) - **feat:** update `array/base/assert` TypeScript declarations [(#9196)](https://github.com/stdlib-js/stdlib/pull/9196) _(by stdlib-bot)_

base/zeros4d/benchmark/benchmark.size.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
2525
var floor = require( '@stdlib/math/base/special/floor' );
26+
var format = require( '@stdlib/string/format' );
2627
var isArrayArray = require( '@stdlib/assert/is-array-array' );
2728
var pkg = require( './../package.json' ).name;
2829
var zeros4d = require( './../lib' );
@@ -88,7 +89,7 @@ function main() {
8889
N = floor( pow( pow( 10, i ), 1.0/4.0 ) );
8990

9091
f = createBenchmark( N );
91-
bench( pkg+'::equidimensional:size='+(N*N*N*N), f );
92+
bench( format( '%s::equidimensional:size=%d', pkg, N*N*N*N ), f );
9293
}
9394
}
9495

0 commit comments

Comments
 (0)