Skip to content

Commit 41a6dd3

Browse files
committed
Auto-generated commit
1 parent 46f8019 commit 41a6dd3

7 files changed

Lines changed: 44 additions & 5 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+
- [`a7a9c99`](https://github.com/stdlib-js/stdlib/commit/a7a9c996c179dcdbfc6468281bc6323d53d6f51f) - **bench:** refactor to use string interpolation in `@stdlib/strided-base` [(#11451)](https://github.com/stdlib-js/stdlib/pull/11451) _(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.3.1">
641

742
## 0.3.1 (2026-02-08)

benchmark/benchmark.accessors.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ var filledarrayBy = require( '@stdlib/array-filled-by' );
3030
var Complex64Array = require( '@stdlib/array-complex64' );
3131
var realf = require( '@stdlib/complex-float32-real' );
3232
var imagf = require( '@stdlib/complex-float32-imag' );
33+
var format = require( '@stdlib/string-format' );
3334
var pkg = require( './../package.json' ).name;
3435
var unary = require( './../lib/main.js' );
3536

@@ -112,7 +113,7 @@ function main() {
112113
for ( i = min; i <= max; i++ ) {
113114
len = pow( 10, i );
114115
f = createBenchmark( len );
115-
bench( pkg+'::accessors:len='+len+',xtype=complex64,ytype=complex64', f );
116+
bench( format( '%s::accessors:len=%d,xtype=complex64,ytype=complex64', pkg, len ), f );
116117
}
117118
}
118119

benchmark/benchmark.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 identity = require( '@stdlib/number-float64-base-identity' );
2828
var filledarray = require( '@stdlib/array-filled' );
2929
var filledarrayBy = require( '@stdlib/array-filled-by' );
30+
var format = require( '@stdlib/string-format' );
3031
var pkg = require( './../package.json' ).name;
3132
var unary = require( './../lib/main.js' );
3233

@@ -115,7 +116,7 @@ function main() {
115116
for ( i = min; i <= max; i++ ) {
116117
len = pow( 10, i );
117118
f = createBenchmark( len, t1, t2 );
118-
bench( pkg+':len='+len+',xtype='+t1+',ytype='+t2, f );
119+
bench( format( '%s:len=%d,xtype=%s,ytype=%s', pkg, len, t1, t2 ), f );
119120
}
120121
}
121122
}

benchmark/benchmark.ndarray.accessors.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ var filledarrayBy = require( '@stdlib/array-filled-by' );
3030
var Complex64Array = require( '@stdlib/array-complex64' );
3131
var realf = require( '@stdlib/complex-float32-real' );
3232
var imagf = require( '@stdlib/complex-float32-imag' );
33+
var format = require( '@stdlib/string-format' );
3334
var pkg = require( './../package.json' ).name;
3435
var unary = require( './../lib/ndarray.js' );
3536

@@ -114,7 +115,7 @@ function main() {
114115
for ( i = min; i <= max; i++ ) {
115116
len = pow( 10, i );
116117
f = createBenchmark( len );
117-
bench( pkg+'::accessors:ndarray:len='+len+',xtype=complex64,ytype=complex64', f );
118+
bench( format( '%s::accessors:ndarray:len=%d,xtype=complex64,ytype=complex64', pkg, len ), f );
118119
}
119120
}
120121

benchmark/benchmark.ndarray.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 identity = require( '@stdlib/number-float64-base-identity' );
2828
var filledarray = require( '@stdlib/array-filled' );
2929
var filledarrayBy = require( '@stdlib/array-filled-by' );
30+
var format = require( '@stdlib/string-format' );
3031
var pkg = require( './../package.json' ).name;
3132
var unary = require( './../lib/ndarray.js' );
3233

@@ -117,7 +118,7 @@ function main() {
117118
for ( i = min; i <= max; i++ ) {
118119
len = pow( 10, i );
119120
f = createBenchmark( len, t1, t2 );
120-
bench( pkg+':ndarray:len='+len+',xtype='+t1+',ytype='+t2, f );
121+
bench( format( '%s:ndarray:len=%d,xtype=%s,ytype=%s', pkg, len, t1, t2 ), f );
121122
}
122123
}
123124
}

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
"@stdlib/number-float64-base-identity": "^0.1.1",
8080
"@stdlib/random-base-discrete-uniform": "^0.2.2",
8181
"@stdlib/strided-dtypes": "^0.3.1",
82+
"@stdlib/string-format": "^0.2.3",
8283
"@stdlib/string-replace": "^0.2.3",
8384
"@stdlib/string-substring-after": "^0.2.3",
8485
"@stdlib/string-substring-before": "^0.2.3",

0 commit comments

Comments
 (0)