Skip to content

Commit aac5653

Browse files
committed
Auto-generated commit
1 parent d3fd176 commit aac5653

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 36 issues were closed in this release:
260260

261261
<details>
262262

263+
- [`c695d88`](https://github.com/stdlib-js/stdlib/commit/c695d883771b97f493c0d370973fbd2bd39d521e) - **bench:** refactor to use string interpolation in `array/base/broadcasted-quinary2d` [(#10438)](https://github.com/stdlib-js/stdlib/pull/10438) _(by anee3)_
263264
- [`6564170`](https://github.com/stdlib-js/stdlib/commit/6564170f3bf0724a927a23b64f3c624294978182) - **bench:** refactor to use string interpolation in `array/empty` [(#10439)](https://github.com/stdlib-js/stdlib/pull/10439) _(by Aman Singh)_
264265
- [`7bf88ba`](https://github.com/stdlib-js/stdlib/commit/7bf88bae362e09e9fd53718b05af4bd11e6f79af) - **bench:** refactor to use string interpolation in `array/fixed-endian-float64` [(#10342)](https://github.com/stdlib-js/stdlib/pull/10342) _(by Bhargav Dabhade, Athan Reines)_
265266
- [`e2b91ec`](https://github.com/stdlib-js/stdlib/commit/e2b91ec8f083aa6724029bd2f3d180d07230cf9e) - **bench:** refactor to use string interpolation in `array/bool` [(#10370)](https://github.com/stdlib-js/stdlib/pull/10370) _(by Shubham, Athan Reines)_

base/broadcasted-quinary2d/benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ var floor = require( '@stdlib/math/base/special/floor' );
2828
var filled2dBy = require( './../../../base/filled2d-by' );
2929
var zeros2d = require( './../../../base/zeros2d' );
3030
var numel = require( '@stdlib/ndarray/base/numel' );
31+
var format = require( '@stdlib/string/format' );
3132
var pkg = require( './../package.json' ).name;
3233
var bquinary2d = require( './../lib' );
3334

@@ -140,7 +141,7 @@ function main() {
140141
N = floor( pow( pow( 10, i ), 1.0/2.0 ) );
141142
sh = [ N, N ];
142143
f = createBenchmark( sh );
143-
bench( pkg+'::square_matrix:size='+numel( sh ), f );
144+
bench( format( '%s::square_matrix:size=%d', pkg, numel( sh ) ), f );
144145
}
145146
}
146147

0 commit comments

Comments
 (0)