Skip to content

Commit 9b187cc

Browse files
committed
Auto-generated commit
1 parent 8e2d88c commit 9b187cc

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-13)
7+
## Unreleased (2025-12-15)
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+
- [`07f9e6e`](https://github.com/stdlib-js/stdlib/commit/07f9e6e124eb63218ec9229faa5b4da0385bc5a7) - **bench:** refactor to use string interpolation in `array/base/filled2d-by` [(#8994)](https://github.com/stdlib-js/stdlib/pull/8994) _(by Rohit R Bhat)_
260261
- [`e7292ba`](https://github.com/stdlib-js/stdlib/commit/e7292bab3952c64edf9b66f89a8a2d803f0fbaf8) - **bench:** refactor to use string interpolation in `array/base/take` [(#9026)](https://github.com/stdlib-js/stdlib/pull/9026) _(by DivitJain26, Philipp Burckhardt)_
261262
- [`3138d95`](https://github.com/stdlib-js/stdlib/commit/3138d952a5f61a9f145424e7a4611e9727d8ab49) - **bench:** refactor to use string interpolation in `array/base/filled-by` [(#8901)](https://github.com/stdlib-js/stdlib/pull/8901) _(by Rohit R Bhat)_
262263
- [`c377b56`](https://github.com/stdlib-js/stdlib/commit/c377b5679b136519dda29dd875dc4465693957e3) - **bench:** refactor to use string interpolation in `array/base/filled2d` [(#8902)](https://github.com/stdlib-js/stdlib/pull/8902) _(by Rohit R Bhat, Philipp Burckhardt)_

base/filled2d-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 sqrt = require( '@stdlib/math/base/special/sqrt' );
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 filled2dBy = require( './../lib' );
3132

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

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

0 commit comments

Comments
 (0)