Skip to content

Commit 6dbe3d8

Browse files
committed
Auto-generated commit
1 parent 0581349 commit 6dbe3d8

7 files changed

Lines changed: 13 additions & 7 deletions

File tree

.github/.keepalive

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

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-03-28)
7+
## Unreleased (2026-04-12)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`1a3f9ed`](https://github.com/stdlib-js/stdlib/commit/1a3f9edaa5dd7978e023dce7adeb29d5c9511880) - **bench:** refactor to use string interpolation in `blas/ext/base` [(#11380)](https://github.com/stdlib-js/stdlib/pull/11380) _(by Karan Anand)_
1516
- [`24a5f5b`](https://github.com/stdlib-js/stdlib/commit/24a5f5b38a0257c37a3bb81ab6eb846bfdd7dbfe) - **bench:** refactor to use dynamic memory allocation in `blas/ext/base/sdsapxsum` [(#10759)](https://github.com/stdlib-js/stdlib/pull/10759) _(by Prajjwal Bajpai)_
1617

1718
</details>
@@ -24,8 +25,9 @@
2425

2526
### Contributors
2627

27-
A total of 1 person contributed to this release. Thank you to this contributor:
28+
A total of 2 people contributed to this release. Thank you to the following contributors:
2829

30+
- Karan Anand
2931
- Prajjwal Bajpai
3032

3133
</section>

benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench-harness' );
2424
var uniform = require( '@stdlib/random-array-uniform' );
2525
var isnan = require( '@stdlib/math-base-assert-is-nan' );
2626
var pow = require( '@stdlib/math-base-special-pow' );
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829
var sdsapxsum = require( './../lib/sdsapxsum.js' );
2930

@@ -95,7 +96,7 @@ function main() {
9596
for ( i = min; i <= max; i++ ) {
9697
len = pow( 10, i );
9798
f = createBenchmark( len );
98-
bench( pkg+':len='+len, f );
99+
bench( format( '%s:len=%d', pkg, len ), f );
99100
}
100101
}
101102

benchmark/benchmark.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ var uniform = require( '@stdlib/random-array-uniform' );
2626
var isnan = require( '@stdlib/math-base-assert-is-nan' );
2727
var pow = require( '@stdlib/math-base-special-pow' );
2828
var tryRequire = require( '@stdlib/utils-try-require' );
29+
var format = require( '@stdlib/string-format' );
2930
var pkg = require( './../package.json' ).name;
3031

3132

@@ -100,7 +101,7 @@ function main() {
100101
for ( i = min; i <= max; i++ ) {
101102
len = pow( 10, i );
102103
f = createBenchmark( len );
103-
bench( pkg+'::native:len='+len, opts, f );
104+
bench( format( '%s::native:len=%d', pkg, len ), opts, f );
104105
}
105106
}
106107

benchmark/benchmark.ndarray.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench-harness' );
2424
var uniform = require( '@stdlib/random-array-uniform' );
2525
var isnan = require( '@stdlib/math-base-assert-is-nan' );
2626
var pow = require( '@stdlib/math-base-special-pow' );
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829
var sdsapxsum = require( './../lib/ndarray.js' );
2930

@@ -95,7 +96,7 @@ function main() {
9596
for ( i = min; i <= max; i++ ) {
9697
len = pow( 10, i );
9798
f = createBenchmark( len );
98-
bench( pkg+':ndarray:len='+len, f );
99+
bench( format( '%s:ndarray:len=%d', pkg, len ), f );
99100
}
100101
}
101102

benchmark/benchmark.ndarray.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ var uniform = require( '@stdlib/random-array-uniform' );
2626
var isnan = require( '@stdlib/math-base-assert-is-nan' );
2727
var pow = require( '@stdlib/math-base-special-pow' );
2828
var tryRequire = require( '@stdlib/utils-try-require' );
29+
var format = require( '@stdlib/string-format' );
2930
var pkg = require( './../package.json' ).name;
3031

3132

@@ -100,7 +101,7 @@ function main() {
100101
for ( i = min; i <= max; i++ ) {
101102
len = pow( 10, i );
102103
f = createBenchmark( len );
103-
bench( pkg+'::native:ndarray:len='+len, opts, f );
104+
bench( format( '%s::native:ndarray:len=%d', pkg, len ), opts, f );
104105
}
105106
}
106107

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
"@stdlib/math-base-special-pow": "^0.3.1",
6363
"@stdlib/random-array-discrete-uniform": "^0.2.2",
6464
"@stdlib/random-array-uniform": "^0.2.2",
65+
"@stdlib/string-format": "^0.2.3",
6566
"proxyquire": "^2.0.0",
6667
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6768
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)