Skip to content

Commit 2c6ca77

Browse files
committed
Auto-generated commit
1 parent bfece52 commit 2c6ca77

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
@@ -256,6 +256,7 @@ A total of 33 issues were closed in this release:
256256

257257
<details>
258258

259+
- [`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)_
259260
- [`4c6da75`](https://github.com/stdlib-js/stdlib/commit/4c6da75d5efe773301912258d2b10f7e7121f4e0) - **bench:** refactor to use string interpolation in `array/base/assert/is-complex64array` [(#8784)](https://github.com/stdlib-js/stdlib/pull/8784) _(by Rohit R Bhat)_
260261
- [`e7258ae`](https://github.com/stdlib-js/stdlib/commit/e7258ae18bab179392875a2aa810646f33da80e6) - **bench:** refactor to use string interpolation in `array/base/assert/is-complex128array` [(#8782)](https://github.com/stdlib-js/stdlib/pull/8782) _(by Rohit R Bhat)_
261262
- [`71af1a0`](https://github.com/stdlib-js/stdlib/commit/71af1a07d17630e96be2349ac6d4ee76db3e1270) - **docs:** fix type _(by Athan Reines)_
@@ -646,7 +647,7 @@ A total of 33 issues were closed in this release:
646647

647648
### Contributors
648649

649-
A total of 24 people contributed to this release. Thank you to the following contributors:
650+
A total of 25 people contributed to this release. Thank you to the following contributors:
650651

651652
- Aayush Khanna
652653
- Abhijit Raut
@@ -660,6 +661,7 @@ A total of 24 people contributed to this release. Thank you to the following con
660661
- Geo Daoyu
661662
- Gururaj Gurram
662663
- Jay Soni
664+
- Kate Suraev
663665
- Kshitij-Dale
664666
- Lalit Narayan Yadav
665667
- Muhammad Haris

base/banded/filled2d-by/benchmark/benchmark.size.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ var floor = require( '@stdlib/math/base/special/floor' );
2626
var sqrt = require( '@stdlib/math/base/special/sqrt' );
2727
var isArrayArray = require( '@stdlib/assert/is-array-array' );
2828
var constantFunction = require( '@stdlib/utils/constant-function' );
29+
var format = require( '@stdlib/string/format' );
2930
var pkg = require( './../package.json' ).name;
3031
var filled2dBy = require( './../lib' );
3132

@@ -97,7 +98,7 @@ function main() {
9798
N = floor( sqrt( pow( 10, i ) ) );
9899

99100
f = createBenchmark( N, k, k );
100-
bench( pkg+':ku='+k+',kl='+k+',size='+(N*N), f );
101+
bench( format( '%s:ku=%d,kl=%d,size=%d', pkg, k, k, N*N ), f );
101102
}
102103
}
103104

0 commit comments

Comments
 (0)