Skip to content

Commit dcd6728

Browse files
committed
Auto-generated commit
1 parent 3b52253 commit dcd6728

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ A total of 33 issues were closed in this release:
257257

258258
<details>
259259

260+
- [`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)_
260261
- [`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)_
261262
- [`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)_
262263
- [`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)_

base/broadcasted-quaternary3d/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/add4' );
2929
var filled3dBy = require( './../../../base/filled3d-by' );
3030
var zeros3d = require( './../../../base/zeros3d' );
3131
var numel = require( '@stdlib/ndarray/base/numel' );
32+
var format = require( '@stdlib/string/format' );
3233
var pkg = require( './../package.json' ).name;
3334
var bquaternary3d = require( './../lib' );
3435

@@ -126,7 +127,7 @@ function main() {
126127
N = floor( pow( pow( 10, i ), 1.0/3.0 ) );
127128
sh = [ N, N, N ];
128129
f = createBenchmark( sh );
129-
bench( pkg+'::equidimensional:size='+numel( sh ), f );
130+
bench( format( '%s::equidimensional:size=%d', pkg, numel( sh ) ), f );
130131
}
131132
}
132133

0 commit comments

Comments
 (0)