Skip to content

Commit 5ab70bd

Browse files
committed
Auto-generated commit
1 parent f70ff0b commit 5ab70bd

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,8 @@ A total of 33 issues were closed in this release:
256256

257257
<details>
258258

259+
- [`f11ec58`](https://github.com/stdlib-js/stdlib/commit/f11ec582954487ae134d60517caf8ab6b908208e) - **bench:** refactor to use string interpolation in `array/base/broadcast-array` [(#8807)](https://github.com/stdlib-js/stdlib/pull/8807) _(by Kate Suraev)_
260+
- [`6dcee29`](https://github.com/stdlib-js/stdlib/commit/6dcee29958b1d4e11445247099549a8fcf06710c) - **bench:** refactor to use string interpolation in `array/base/broadcasted-binary2d` [(#8808)](https://github.com/stdlib-js/stdlib/pull/8808) _(by Kate Suraev)_
259261
- [`e90c33d`](https://github.com/stdlib-js/stdlib/commit/e90c33d923ee90a55993a02d5b3802a8f83c7ee4) - **bench:** refactor to use string interpolation in `array/base/broadcasted-binary3d` [(#8809)](https://github.com/stdlib-js/stdlib/pull/8809) _(by Kate Suraev)_
260262
- [`b7e39fd`](https://github.com/stdlib-js/stdlib/commit/b7e39fd40f3113966cdb40d479f73825cd23b1e4) - **bench:** refactor to use string interpolation in `array/base/binary2d` [(#8802)](https://github.com/stdlib-js/stdlib/pull/8802) _(by Kate Suraev)_
261263
- [`981c470`](https://github.com/stdlib-js/stdlib/commit/981c4701b0560daeb42f6235c837a661fc82beaa) - **bench:** refactor to use string interpolation in `array/base/banded/filled2d-by` [(#8801)](https://github.com/stdlib-js/stdlib/pull/8801) _(by Kate Suraev)_

base/broadcast-array/benchmark/benchmark.dimensions.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 isArray = require( '@stdlib/assert/is-array' );
2525
var isEven = require( '@stdlib/math/base/assert/is-even' );
2626
var zerosnd = require( './../../../base/zerosnd' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var broadcastArray = require( './../lib' );
2930

@@ -109,7 +110,7 @@ function main() {
109110

110111
for ( i = min; i <= max; i++ ) {
111112
f = createBenchmark( i );
112-
bench( pkg+':dimensions='+i, f );
113+
bench( format( '%s:dimensions=%d', pkg, i ), f );
113114
}
114115
}
115116

base/broadcasted-binary2d/benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ var add = require( '@stdlib/number/float64/base/add' );
2929
var filled2dBy = require( './../../../base/filled2d-by' );
3030
var zeros2d = require( './../../../base/zeros2d' );
3131
var numel = require( '@stdlib/ndarray/base/numel' );
32+
var format = require( '@stdlib/string/format' );
3233
var pkg = require( './../package.json' ).name;
3334
var bbinary2d = require( './../lib' );
3435

@@ -117,7 +118,7 @@ function main() {
117118
N = floor( pow( pow( 10, i ), 1.0/2.0 ) );
118119
sh = [ N, N ];
119120
f = createBenchmark( sh );
120-
bench( pkg+'::square_matrix:size='+numel( sh ), f );
121+
bench( format( '%s::square_matrix:size=%d', pkg, numel( sh ) ), f );
121122
}
122123
}
123124

0 commit comments

Comments
 (0)