Skip to content

Commit de27cf9

Browse files
committed
Auto-generated commit
1 parent ba8e895 commit de27cf9

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

.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-02-23)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`208c5bf`](https://github.com/stdlib-js/stdlib/commit/208c5bf44bb87460a2a310e593193970c0366455) - **bench:** refactor to use string interpolation in `lapack/base/dpttrf` [(#10103)](https://github.com/stdlib-js/stdlib/pull/10103) _(by Prajjwal Bajpai)_
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+
- Prajjwal Bajpai
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.1.2">
640

741
## 0.1.2 (2026-02-07)

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 dpttrf = require( './../lib/dpttrf.js' );
2930

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

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 dpttrf = require( './../lib/ndarray.js' );
2930

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

0 commit comments

Comments
 (0)