Skip to content

Commit d5460b8

Browse files
committed
Auto-generated commit
1 parent 6fe9831 commit d5460b8

3 files changed

Lines changed: 37 additions & 3 deletions

File tree

.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-21)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`5aadc76`](https://github.com/stdlib-js/stdlib/commit/5aadc76d03d8e3c511de2f14131be73dfe118af9) - **bench:** refactor to use string interpolation in `ndarray` [(#11445)](https://github.com/stdlib-js/stdlib/pull/11445) _(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.2">
640

741
## 0.2.2 (2026-02-08)

benchmark/benchmark.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,14 @@ var strides2offset = require( '@stdlib/ndarray-base-strides2offset' );
2727
var numel = require( '@stdlib/ndarray-base-numel' );
2828
var zeroTo = require( '@stdlib/array-base-zero-to' );
2929
var ndarray = require( '@stdlib/ndarray-ctor' );
30+
var format = require( '@stdlib/string-format' );
3031
var pkg = require( './../package.json' ).name;
3132
var ndarray2array = require( './../lib' );
3233

3334

3435
// MAIN //
3536

36-
bench( pkg+':order=row-major', function benchmark( b ) {
37+
bench( format( '%s:order=row-major', pkg ), function benchmark( b ) {
3738
var strides;
3839
var buffer;
3940
var offset;
@@ -70,7 +71,7 @@ bench( pkg+':order=row-major', function benchmark( b ) {
7071
b.end();
7172
});
7273

73-
bench( pkg+':order=column-major', function benchmark( b ) {
74+
bench( format( '%s:order=column-major', pkg ), function benchmark( b ) {
7475
var strides;
7576
var buffer;
7677
var offset;

0 commit comments

Comments
 (0)