Skip to content

Commit a574c3c

Browse files
committed
Auto-generated commit
1 parent 45ac544 commit a574c3c

File tree

4 files changed

+39
-4
lines changed

4 files changed

+39
-4
lines changed

.github/.keepalive

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

CHANGELOG.md

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

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2026-04-17)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`6d6b9d4`](https://github.com/stdlib-js/stdlib/commit/6d6b9d42d8904ca49fb55e2ca464780573886aa0) - **bench:** refactor to use string interpolation in `@stdlib/ndarray` [(#11446)](https:-/github.com/stdlib-js/stdlib/pull/11446) _(by Karan Anand)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Karan Anand
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.2.3">
640

741
## 0.2.3 (2026-02-08)

benchmark/benchmark.dispatch_size.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ var pow = require( '@stdlib/math-base-special-pow' );
2626
var unary = require( '@stdlib/ndarray-base-unary' );
2727
var Float64Array = require( '@stdlib/array-float64' );
2828
var ndarray = require( '@stdlib/ndarray-ctor' );
29+
var format = require( '@stdlib/string-format' );
2930
var pkg = require( './../package.json' ).name;
3031
var dispatch = require( './../lib/main.js' );
3132

@@ -149,7 +150,7 @@ function main() {
149150
for ( i = min; i <= max; i++ ) {
150151
size = pow( 2, i );
151152
f = createBenchmark( size );
152-
bench( pkg+':size='+size, f );
153+
bench( format( '%s:size=%d', pkg, size ), f );
153154
}
154155
}
155156

benchmark/benchmark.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ var bench = require( '@stdlib/bench-harness' );
2424
var isFunction = require( '@stdlib/assert-is-function' );
2525
var unary = require( '@stdlib/ndarray-base-unary' );
2626
var abs = require( '@stdlib/math-base-special-abs' );
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829
var dispatch = require( './../lib' );
2930

3031

3132
// MAIN //
3233

33-
bench( pkg+'::fcns_array', function benchmark( b ) {
34+
bench( format( '%s::fcns_array', pkg ), function benchmark( b ) {
3435
var types;
3536
var fcns;
3637
var data;
@@ -56,7 +57,7 @@ bench( pkg+'::fcns_array', function benchmark( b ) {
5657
b.end();
5758
});
5859

59-
bench( pkg+'::fcn_arg', function benchmark( b ) {
60+
bench( format( '%s::fcn_arg', pkg ), function benchmark( b ) {
6061
var types;
6162
var data;
6263
var out;

0 commit comments

Comments
 (0)