Skip to content

Commit de946ff

Browse files
committed
Auto-generated commit
1 parent dcd6728 commit de946ff

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-12-15)
7+
## Unreleased (2025-12-16)
88

99
<section class="features">
1010

@@ -257,6 +257,7 @@ A total of 33 issues were closed in this release:
257257

258258
<details>
259259

260+
- [`b2b3432`](https://github.com/stdlib-js/stdlib/commit/b2b343206f3a2d3b398354b493003c1fec519761) - **bench:** refactor to use string interpolation `array/base/filled3d` [(#8995)](https://github.com/stdlib-js/stdlib/pull/8995) _(by Rohit R Bhat)_
260261
- [`9ee9547`](https://github.com/stdlib-js/stdlib/commit/9ee95477edb00d544ab96cf8aadc655a8ff18f9e) - **bench:** refactor to use string interpolation in `array/base/broadcasted-quaternary3d` [(#8957)](https://github.com/stdlib-js/stdlib/pull/8957) _(by Sujal charati)_
261262
- [`a5e79dd`](https://github.com/stdlib-js/stdlib/commit/a5e79ddd6eda016a0e3628f719f674f140e362e2) - **bench:** refactor to use string interpolation in `array/base/atnd` [(#8955)](https://github.com/stdlib-js/stdlib/pull/8955) _(by Sujal charati, Athan Reines)_
262263
- [`9a19f44`](https://github.com/stdlib-js/stdlib/commit/9a19f4491b96074f4728ff47b6a3ec73d6d0e27c) - **bench:** refactor to use string interpolation in `array/base/cunone` [(#8947)](https://github.com/stdlib-js/stdlib/pull/8947) _(by Aman Singh)_

base/filled3d/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 cbrt = require( '@stdlib/math/base/special/cbrt' );
2727
var isArrayArray = require( '@stdlib/assert/is-array-array' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var filled3d = require( './../lib' );
3031

@@ -89,7 +90,7 @@ function main() {
8990
N = floor( cbrt( pow( 10, i ) ) );
9091

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

0 commit comments

Comments
 (0)