Skip to content

Commit 3b52253

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

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
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+
- [`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)_
260261
- [`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)_
261262
- [`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)_
262263
- [`e7292ba`](https://github.com/stdlib-js/stdlib/commit/e7292bab3952c64edf9b66f89a8a2d803f0fbaf8) - **bench:** refactor to use string interpolation in `array/base/take` [(#9026)](https://github.com/stdlib-js/stdlib/pull/9026) _(by DivitJain26, Philipp Burckhardt)_
@@ -684,7 +685,7 @@ A total of 33 issues were closed in this release:
684685

685686
### Contributors
686687

687-
A total of 28 people contributed to this release. Thank you to the following contributors:
688+
A total of 29 people contributed to this release. Thank you to the following contributors:
688689

689690
- Aayush Khanna
690691
- Abhijit Raut
@@ -711,6 +712,7 @@ A total of 28 people contributed to this release. Thank you to the following con
711712
- Rylan Yang
712713
- Sachin Raj
713714
- Shabareesh Shetty
715+
- Sujal charati
714716
- Ullas
715717
- Vinit Pandit
716718
- ashutoshsao

base/atnd/benchmark/benchmark.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ var bench = require( '@stdlib/bench' );
2424
var uniform = require( '@stdlib/random/base/uniform' ).factory;
2525
var filledndBy = require( './../../../base/fillednd-by' );
2626
var isnan = require( '@stdlib/math/base/assert/is-nan' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var atnd = require( './../lib' );
2930

3031

3132
// MAIN //
3233

33-
bench( pkg+':ndims=1', function benchmark( b ) {
34+
bench( format( '%s:ndims=1', pkg ), function benchmark( b ) {
3435
var x;
3536
var v;
3637
var i;
@@ -54,7 +55,7 @@ bench( pkg+':ndims=1', function benchmark( b ) {
5455
b.end();
5556
});
5657

57-
bench( pkg+':ndims=2', function benchmark( b ) {
58+
bench( format( '%s:ndims=2', pkg ), function benchmark( b ) {
5859
var x;
5960
var v;
6061
var i;
@@ -78,7 +79,7 @@ bench( pkg+':ndims=2', function benchmark( b ) {
7879
b.end();
7980
});
8081

81-
bench( pkg+':ndims=3', function benchmark( b ) {
82+
bench( format( '%s:ndims=3', pkg ), function benchmark( b ) {
8283
var x;
8384
var v;
8485
var i;
@@ -102,7 +103,7 @@ bench( pkg+':ndims=3', function benchmark( b ) {
102103
b.end();
103104
});
104105

105-
bench( pkg+':ndims=4', function benchmark( b ) {
106+
bench( format( '%s:ndims=4', pkg ), function benchmark( b ) {
106107
var x;
107108
var v;
108109
var i;
@@ -126,7 +127,7 @@ bench( pkg+':ndims=4', function benchmark( b ) {
126127
b.end();
127128
});
128129

129-
bench( pkg+':ndims=5', function benchmark( b ) {
130+
bench( format( '%s:ndims=5', pkg ), function benchmark( b ) {
130131
var x;
131132
var v;
132133
var i;

0 commit comments

Comments
 (0)