Skip to content

Commit 4b063f5

Browse files
committed
Auto-generated commit
1 parent 40b5de9 commit 4b063f5

5 files changed

Lines changed: 44 additions & 8 deletions

File tree

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-02-24)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`e540461`](https://github.com/stdlib-js/stdlib/commit/e540461e94f4d7bcc56d361e0fc4d24790143b52) - **bench:** refactor to use string interpolation in `blas/base/strmv` [(#10461)](https://github.com/stdlib-js/stdlib/pull/10461) _(by Lokesh Ranjan)_
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+
- Lokesh Ranjan
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.1.1">
640

741
## 0.1.1 (2026-02-08)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
313313
[npm-image]: http://img.shields.io/npm/v/@stdlib/blas-base-strmv.svg
314314
[npm-url]: https://npmjs.org/package/@stdlib/blas-base-strmv
315315

316-
[test-image]: https://github.com/stdlib-js/blas-base-strmv/actions/workflows/test.yml/badge.svg?branch=v0.1.1
317-
[test-url]: https://github.com/stdlib-js/blas-base-strmv/actions/workflows/test.yml?query=branch:v0.1.1
316+
[test-image]: https://github.com/stdlib-js/blas-base-strmv/actions/workflows/test.yml/badge.svg?branch=main
317+
[test-url]: https://github.com/stdlib-js/blas-base-strmv/actions/workflows/test.yml?query=branch:main
318318

319319
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/blas-base-strmv/main.svg
320320
[coverage-url]: https://codecov.io/github/stdlib-js/blas-base-strmv?branch=main

benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var isnanf = require( '@stdlib/math-base-assert-is-nanf' );
2525
var ones = require( '@stdlib/array-ones' );
2626
var pow = require( '@stdlib/math-base-special-pow' );
2727
var floor = require( '@stdlib/math-base-special-floor' );
28+
var format = require( '@stdlib/string-format' );
2829
var pkg = require( './../package.json' ).name;
2930
var strmv = require( './../lib/strmv.js' );
3031

@@ -97,7 +98,7 @@ function main() {
9798
for ( i = min; i <= max; i++ ) {
9899
N = floor( pow( pow( 10, i ), 1.0/2.0 ) );
99100
f = createBenchmark( N );
100-
bench( pkg+':size='+(N*N), f );
101+
bench( format( '%s:size=%d', pkg, N*N ), f );
101102
}
102103
}
103104

benchmark/benchmark.ndarray.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var isnanf = require( '@stdlib/math-base-assert-is-nanf' );
2525
var ones = require( '@stdlib/array-ones' );
2626
var pow = require( '@stdlib/math-base-special-pow' );
2727
var floor = require( '@stdlib/math-base-special-floor' );
28+
var format = require( '@stdlib/string-format' );
2829
var pkg = require( './../package.json' ).name;
2930
var strmv = require( './../lib/ndarray.js' );
3031

@@ -97,7 +98,7 @@ function main() {
9798
for ( i = min; i <= max; i++ ) {
9899
N = floor( pow( pow( 10, i ), 1.0/2.0 ) );
99100
f = createBenchmark( N );
100-
bench( pkg+':ndarray:size='+(N*N), f );
101+
bench( format( '%s:ndarray:size=%d', pkg, N*N ), f );
101102
}
102103
}
103104

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
},
3939
"dependencies": {
4040
"@stdlib/assert-is-error": "^0.2.3",
41-
"@stdlib/blas-base-assert-is-diagonal-type": "^0.0.1",
42-
"@stdlib/blas-base-assert-is-layout": "^0.0.2",
41+
"@stdlib/blas-base-assert-is-diagonal-type": "^0.0.2",
42+
"@stdlib/blas-base-assert-is-layout": "^0.0.3",
4343
"@stdlib/blas-base-assert-is-matrix-triangle": "^0.0.3",
4444
"@stdlib/blas-base-assert-is-transpose-operation": "^0.1.1",
4545
"@stdlib/math-base-special-fast-max": "^0.3.1",
@@ -55,12 +55,12 @@
5555
},
5656
"devDependencies": {
5757
"@stdlib/array-float32": "^0.2.3",
58-
"@stdlib/array-ones": "^0.2.1",
58+
"@stdlib/array-ones": "^0.2.2",
5959
"@stdlib/assert-is-browser": "^0.2.3",
6060
"@stdlib/math-base-assert-is-nanf": "^0.2.3",
6161
"@stdlib/math-base-special-floor": "^0.2.4",
6262
"@stdlib/math-base-special-pow": "^0.3.1",
63-
"@stdlib/random-array-discrete-uniform": "^0.2.1",
63+
"@stdlib/random-array-discrete-uniform": "^0.2.2",
6464
"proxyquire": "^2.0.0",
6565
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6666
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)