Skip to content

Commit 437ccb9

Browse files
committed
Auto-generated commit
1 parent 2a7f35e commit 437ccb9

5 files changed

Lines changed: 43 additions & 6 deletions

File tree

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-02-23)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`9d39628`](https://github.com/stdlib-js/stdlib/commit/9d39628f9f41d0e8115684bc155aaba353ede02e) - **bench:** refactor to use string interpolation in `lapack/base/dlacpy` [(#10097)](https://github.com/stdlib-js/stdlib/pull/10097) _(by Prajjwal Bajpai, Athan Reines)_
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+
- Athan Reines
30+
- Prajjwal Bajpai
31+
32+
</section>
33+
34+
<!-- /.contributors -->
35+
36+
</section>
37+
38+
<!-- /.release -->
39+
540
<section class="release" id="v0.2.1">
641

742
## 0.2.1 (2026-02-08)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,8 +402,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
402402
[npm-image]: http://img.shields.io/npm/v/@stdlib/lapack-base-dlacpy.svg
403403
[npm-url]: https://npmjs.org/package/@stdlib/lapack-base-dlacpy
404404
405-
[test-image]: https://github.com/stdlib-js/lapack-base-dlacpy/actions/workflows/test.yml/badge.svg?branch=v0.2.1
406-
[test-url]: https://github.com/stdlib-js/lapack-base-dlacpy/actions/workflows/test.yml?query=branch:v0.2.1
405+
[test-image]: https://github.com/stdlib-js/lapack-base-dlacpy/actions/workflows/test.yml/badge.svg?branch=main
406+
[test-url]: https://github.com/stdlib-js/lapack-base-dlacpy/actions/workflows/test.yml?query=branch:main
407407
408408
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/lapack-base-dlacpy/main.svg
409409
[coverage-url]: https://codecov.io/github/stdlib-js/lapack-base-dlacpy?branch=main

benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ 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' );
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 dlacpy = require( './../lib/dlacpy.js' );
3031

@@ -98,7 +99,7 @@ function main() {
9899
for ( i = min; i <= max; i++ ) {
99100
N = floor( pow( pow( 10, i ), 1.0/2.0 ) );
100101
f = createBenchmark( N );
101-
bench( pkg+':order=column-major,size='+(N*N), f );
102+
bench( format( '%s:order=column-major,size=%d', pkg, N*N ), f );
102103
}
103104
}
104105

benchmark/benchmark.ndarray.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ 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' );
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 dlacpy = require( './../lib/ndarray.js' );
3031

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@
7373
"@stdlib/ndarray-base-numel": "^0.2.3",
7474
"@stdlib/ndarray-base-shape2strides": "^0.2.3",
7575
"@stdlib/ndarray-base-to-array": "^0.2.2",
76-
"@stdlib/random-array-discrete-uniform": "^0.2.1",
77-
"@stdlib/random-array-uniform": "^0.2.1",
76+
"@stdlib/random-array-discrete-uniform": "^0.2.2",
77+
"@stdlib/random-array-uniform": "^0.2.2",
7878
"proxyquire": "^2.0.0",
7979
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
8080
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)