Skip to content

Commit 2bdb73f

Browse files
committed
Auto-generated commit
1 parent 355aac5 commit 2bdb73f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
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+
- [`e7f3da3`](https://github.com/stdlib-js/stdlib/commit/e7f3da39694b2faadcf4204b9e772fe40d57f506) - **bench:** refactor to use string interpolation in `array/base/fliplr2d` [(#8857)](https://github.com/stdlib-js/stdlib/pull/8857) _(by Ullas)_
260261
- [`9836337`](https://github.com/stdlib-js/stdlib/commit/9836337952ec885367411bbea26d393aff18aef1) - **bench:** refactor to use string interpolation in `array/base/bifurcate-indices` [(#8851)](https://github.com/stdlib-js/stdlib/pull/8851) _(by ashutoshsao)_
261262
- [`b8beb65`](https://github.com/stdlib-js/stdlib/commit/b8beb6541969d801b04d8937a8a10d5aa184b796) - **bench:** refactor to use string interpolation in `array/base/cuany` [(#8853)](https://github.com/stdlib-js/stdlib/pull/8853) _(by Aman Singh)_
262263
- [`741d69e`](https://github.com/stdlib-js/stdlib/commit/741d69e63e3467605f6fb777136fcdb8dc6f8492) - **docs:** update examples in `array` TypeScript declarations [(#8836)](https://github.com/stdlib-js/stdlib/pull/8836) _(by stdlib-bot)_
@@ -662,7 +663,7 @@ A total of 33 issues were closed in this release:
662663

663664
### Contributors
664665

665-
A total of 26 people contributed to this release. Thank you to the following contributors:
666+
A total of 27 people contributed to this release. Thank you to the following contributors:
666667

667668
- Aayush Khanna
668669
- Abhijit Raut
@@ -688,6 +689,7 @@ A total of 26 people contributed to this release. Thank you to the following con
688689
- Rylan Yang
689690
- Sachin Raj
690691
- Shabareesh Shetty
692+
- Ullas
691693
- Vinit Pandit
692694
- ashutoshsao
693695

base/fliplr2d/benchmark/benchmark.size.js

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

@@ -100,7 +101,7 @@ function main() {
100101
N = floor( pow( pow( 10, i ), 1.0/2.0 ) );
101102
sh = [ N, N ];
102103
f = createBenchmark( sh );
103-
bench( pkg+'::square_matrix:size='+numel( sh ), f );
104+
bench( format( '%s::square_matrix:size=%d', pkg, numel( sh ) ), f );
104105
}
105106
}
106107

0 commit comments

Comments
 (0)