Skip to content

Commit 1d8c426

Browse files
committed
Auto-generated commit
1 parent 4daf928 commit 1d8c426

5 files changed

Lines changed: 40 additions & 3 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,41 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2026-04-19)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`f7304bd`](https://github.com/stdlib-js/stdlib/commit/f7304bd6d7ffd88df213dff3b3ca5d380443dcfc) - **bench:** refactor to use string interpolation in `@stdlib/strided-base` [(#11449)](https://github.com/stdlib-js/stdlib/pull/11449) _(by Uday Kakade, Karan Anand)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 2 people contributed to this release. Thank you to the following contributors:
28+
29+
- Karan Anand
30+
- Uday Kakade
31+
32+
</section>
33+
34+
<!-- /.contributors -->
35+
36+
</section>
37+
38+
<!-- /.release -->
39+
540
<section class="release" id="v0.2.3">
641

742
## 0.2.3 (2026-02-01)

benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ var pow = require( '@stdlib/math-base-special-pow' );
2828
var add = require( '@stdlib/number-float64-base-add' );
2929
var Float64Array = require( '@stdlib/array-float64' );
3030
var filledarrayBy = require( '@stdlib/array-filled-by' );
31+
var format = require( '@stdlib/string-format' );
3132
var pkg = require( './../package.json' ).name;
3233
var dmskmap2 = require( './../lib/main.js' );
3334

@@ -102,7 +103,7 @@ function main() {
102103
for ( i = min; i <= max; i++ ) {
103104
len = pow( 10, i );
104105
f = createBenchmark( len );
105-
bench( pkg+':len='+len, f );
106+
bench( format( '%s:len=%d', pkg, len ), f );
106107
}
107108
}
108109

benchmark/benchmark.ndarray.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ var pow = require( '@stdlib/math-base-special-pow' );
2828
var add = require( '@stdlib/number-float64-base-add' );
2929
var Float64Array = require( '@stdlib/array-float64' );
3030
var filledarrayBy = require( '@stdlib/array-filled-by' );
31+
var format = require( '@stdlib/string-format' );
3132
var pkg = require( './../package.json' ).name;
3233
var dmskmap2 = require( './../lib/ndarray.js' );
3334

@@ -102,7 +103,7 @@ function main() {
102103
for ( i = min; i <= max; i++ ) {
103104
len = pow( 10, i );
104105
f = createBenchmark( len );
105-
bench( pkg+':ndarray:len='+len, f );
106+
bench( format( '%s:ndarray:len=%d', pkg, len ), f );
106107
}
107108
}
108109

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
"@stdlib/random-base-bernoulli": "^0.2.2",
5454
"@stdlib/random-base-discrete-uniform": "^0.2.2",
5555
"@stdlib/random-base-uniform": "^0.2.3",
56+
"@stdlib/string-format": "^0.2.3",
5657
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5758
"istanbul": "^0.4.1",
5859
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",

0 commit comments

Comments
 (0)