Skip to content

Commit 958f953

Browse files
committed
Auto-generated commit
1 parent 68d0c52 commit 958f953

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

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+
- [`b45d635`](https://github.com/stdlib-js/stdlib/commit/b45d6355de87bcd65764a9c07f5551e2423e83cb) - **bench:** refactor to use string interpolation in `array/base/filled5d-by` [(#9283)](https://github.com/stdlib-js/stdlib/pull/9283) _(by Rohit R Bhat)_
263264
- [`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)_
264265
- [`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)_
265266
- [`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)_

base/filled5d-by/benchmark/benchmark.size.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var pow = require( '@stdlib/math/base/special/pow' );
2525
var floor = require( '@stdlib/math/base/special/floor' );
2626
var isArrayArray = require( '@stdlib/assert/is-array-array' );
2727
var constantFunction = require( '@stdlib/utils/constant-function' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var filled5dBy = require( './../lib' );
3031

@@ -92,7 +93,7 @@ function main() {
9293
N = floor( pow( pow( 10, i ), 1.0/5.0 ) );
9394

9495
f = createBenchmark( N );
95-
bench( pkg+'::equidimensional:size='+(N*N*N*N*N), f );
96+
bench( format( '%s::equidimensional:size=%d', pkg, N*N*N*N*N ), f );
9697
}
9798
}
9899

0 commit comments

Comments
 (0)