Skip to content

Commit 5194a63

Browse files
committed
Auto-generated commit
1 parent 1aba9a1 commit 5194a63

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 3 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-17)
7+
## Unreleased (2025-12-18)
88

99
<section class="features">
1010

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

258258
<details>
259259

260+
- [`ce79dc0`](https://github.com/stdlib-js/stdlib/commit/ce79dc05e70a1a631c3d23c2f0d2127420537b38) - **bench:** refactor to use string interpolation in `array/base/filled4d-by` [(#9188)](https://github.com/stdlib-js/stdlib/pull/9188) _(by Rohit R Bhat)_
261+
- [`ae947b7`](https://github.com/stdlib-js/stdlib/commit/ae947b78961fba28af4cdc2f4ba54fa5df8b35b3) - **bench:** refactor to use string interpolation in `array/base/filled5d` [(#9189)](https://github.com/stdlib-js/stdlib/pull/9189) _(by Rohit R Bhat)_
260262
- [`028d3db`](https://github.com/stdlib-js/stdlib/commit/028d3db4147f5e4735d81babd193a65c983d87c9) - **bench:** refactor to use string interpolation in `array/base/take3d` [(#9053)](https://github.com/stdlib-js/stdlib/pull/9053) _(by DivitJain26, Athan Reines)_
261263
- [`66dec1e`](https://github.com/stdlib-js/stdlib/commit/66dec1ea2a3186a8b461abc11ad69f1e42b1c478) - **bench:** refactor to use string interpolation in `array/base/take2d` [(#9051)](https://github.com/stdlib-js/stdlib/pull/9051) _(by DivitJain26, Athan Reines)_
262264
- [`2be0aaf`](https://github.com/stdlib-js/stdlib/commit/2be0aaf5336c2ec9e2194f1e9e3087ad56cfdb85) - **bench:** refactor to use string interpolation in `array/base/take-map` [(#9050)](https://github.com/stdlib-js/stdlib/pull/9050) _(by DivitJain26)_

base/filled4d-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 filled4dBy = require( './../lib' );
3031

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

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

base/filled5d/benchmark/benchmark.size.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench' );
2424
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' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var filled5d = require( './../lib' );
2930

@@ -88,7 +89,7 @@ function main() {
8889
N = floor( pow( pow( 10, i ), 1.0/5.0 ) );
8990

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

0 commit comments

Comments
 (0)