Skip to content

Commit 6b0dad9

Browse files
committed
Auto-generated commit
1 parent d76aaf4 commit 6b0dad9

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+
- [`2bf7cbf`](https://github.com/stdlib-js/stdlib/commit/2bf7cbf148aab4f2506f08aefc367749fae12293) - **bench:** refactor to use string interpolation in `array/base/fill-by` [(#8899)](https://github.com/stdlib-js/stdlib/pull/8899) _(by Rohit R Bhat, Athan Reines)_
260261
- [`e823a35`](https://github.com/stdlib-js/stdlib/commit/e823a3537257e5bfb6f0c59cb983fd8ca7752ff2) - **bench:** refactor to use string interpolation in `array/base/filled` [(#8900)](https://github.com/stdlib-js/stdlib/pull/8900) _(by Rohit R Bhat, Athan Reines)_
261262
- [`1b8be24`](https://github.com/stdlib-js/stdlib/commit/1b8be2499186830f3350dbced11d7c6ef0baa644) - **bench:** refactor to use string interpolation in `array/base/cusome` [(#8881)](https://github.com/stdlib-js/stdlib/pull/8881) _(by Aman Singh)_
262263
- [`286d36b`](https://github.com/stdlib-js/stdlib/commit/286d36b62d7d7254b7261296a784a9931ea76e6f) - **bench:** refactor to use string interpolation in `array/base/cuevery` [(#8867)](https://github.com/stdlib-js/stdlib/pull/8867) _(by Aman Singh)_

base/fill-by/benchmark/benchmark.length.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 isArray = require( '@stdlib/assert/is-array' );
2626
var ones = require( './../../../base/ones' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var fillBy = require( './../lib' );
2930

@@ -102,7 +103,7 @@ function main() {
102103
len = pow( 10, i );
103104

104105
f = createBenchmark( len );
105-
bench( pkg+':dtype=generic,len='+len, f );
106+
bench( format( '%s:dtype=generic,len=%d', pkg, len ), f );
106107
}
107108
}
108109

0 commit comments

Comments
 (0)