Skip to content

Commit 174117f

Browse files
committed
Auto-generated commit
1 parent 6ea728a commit 174117f

5 files changed

Lines changed: 44 additions & 7 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+
- [`b2ac230`](https://github.com/stdlib-js/stdlib/commit/b2ac2304fe21c8c482b272646776c591be9282e2) - **bench:** refactor to use string interpolation in `lapack/base/zlacpy` [(#10128)](https://github.com/stdlib-js/stdlib/pull/10128) _(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.1.1">
641

742
## 0.1.1 (2026-02-08)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,8 +330,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
330330
[npm-image]: http://img.shields.io/npm/v/@stdlib/lapack-base-zlacpy.svg
331331
[npm-url]: https://npmjs.org/package/@stdlib/lapack-base-zlacpy
332332

333-
[test-image]: https://github.com/stdlib-js/lapack-base-zlacpy/actions/workflows/test.yml/badge.svg?branch=v0.1.1
334-
[test-url]: https://github.com/stdlib-js/lapack-base-zlacpy/actions/workflows/test.yml?query=branch:v0.1.1
333+
[test-image]: https://github.com/stdlib-js/lapack-base-zlacpy/actions/workflows/test.yml/badge.svg?branch=main
334+
[test-url]: https://github.com/stdlib-js/lapack-base-zlacpy/actions/workflows/test.yml?query=branch:main
335335

336336
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/lapack-base-zlacpy/main.svg
337337
[coverage-url]: https://codecov.io/github/stdlib-js/lapack-base-zlacpy?branch=main

benchmark/benchmark.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 floor = require( '@stdlib/math-base-special-floor' );
29+
var format = require( '@stdlib/string-format' );
2930
var pkg = require( './../package.json' ).name;
3031
var zlacpy = require( './../lib/zlacpy.js' );
3132

@@ -103,7 +104,7 @@ function main() {
103104
for ( i = min; i <= max; i++ ) {
104105
N = floor( pow( pow( 10, i ), 1.0/2.0 ) );
105106
f = createBenchmark( N );
106-
bench( pkg+':order=column-major,size='+(N*N), f );
107+
bench( format( '%s:order=column-major,size=%d', pkg, N*N ), f );
107108
}
108109
}
109110

benchmark/benchmark.ndarray.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 floor = require( '@stdlib/math-base-special-floor' );
29+
var format = require( '@stdlib/string-format' );
2930
var pkg = require( './../package.json' ).name;
3031
var zlacpy = require( './../lib/ndarray.js' );
3132

@@ -103,7 +104,7 @@ function main() {
103104
for ( i = min; i <= max; i++ ) {
104105
N = floor( pow( pow( 10, i ), 1.0/2.0 ) );
105106
f = createBenchmark( N );
106-
bench( pkg+':ndarray:order=column-major,size='+(N*N), f );
107+
bench( format( '%s:ndarray:order=column-major,size=%d', pkg, N*N ), f );
107108
}
108109
}
109110

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@
5353
"devDependencies": {
5454
"@stdlib/array-complex128": "^0.3.2",
5555
"@stdlib/assert-is-browser": "^0.2.3",
56-
"@stdlib/assert-is-same-complex128array": "^0.2.2",
56+
"@stdlib/assert-is-same-complex128array": "^0.2.3",
5757
"@stdlib/math-base-assert-is-nan": "^0.2.3",
5858
"@stdlib/math-base-special-floor": "^0.2.4",
5959
"@stdlib/math-base-special-pow": "^0.3.1",
6060
"@stdlib/ndarray-base-numel": "^0.2.3",
6161
"@stdlib/ndarray-base-shape2strides": "^0.2.3",
6262
"@stdlib/ndarray-base-to-array": "^0.2.2",
63-
"@stdlib/random-array-discrete-uniform": "^0.2.1",
64-
"@stdlib/random-array-uniform": "^0.2.1",
63+
"@stdlib/random-array-discrete-uniform": "^0.2.2",
64+
"@stdlib/random-array-uniform": "^0.2.2",
6565
"proxyquire": "^2.0.0",
6666
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6767
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)