Skip to content

Commit 8086ef2

Browse files
committed
Auto-generated commit
1 parent d701231 commit 8086ef2

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+
- [`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)_
263264
- [`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)_
264265
- [`de9dec4`](https://github.com/stdlib-js/stdlib/commit/de9dec49411a9f71d800970e9324e87dca52098b) - **docs:** update namespace table of contents [(#9205)](https://github.com/stdlib-js/stdlib/pull/9205) _(by stdlib-bot)_
265266
- [`ca51243`](https://github.com/stdlib-js/stdlib/commit/ca5124377589a8051527e4bc3b87173723c88f51) - **feat:** add `hasAlmostSameValues` to namespace _(by Athan Reines)_

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

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

@@ -93,7 +94,7 @@ function main() {
9394
N = floor( cbrt( pow( 10, i ) ) );
9495

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

0 commit comments

Comments
 (0)