Skip to content

Commit 1a577ac

Browse files
committed
Auto-generated commit
1 parent ed47785 commit 1a577ac

68 files changed

Lines changed: 202 additions & 103 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

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-16)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`9efe7df`](https://github.com/stdlib-js/stdlib/commit/9efe7df13c315e32a9e938830a15f874fb1cb4a0) - **bench:** refactor to use string interpolation in `array/complex64` [(#10302)](https://github.com/stdlib-js/stdlib/pull/10302) _(by Shubham)_
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+
- Shubham
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.3.2">
640

741
## 0.3.2 (2026-02-08)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2686,8 +2686,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
26862686
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-complex64.svg
26872687
[npm-url]: https://npmjs.org/package/@stdlib/array-complex64
26882688

2689-
[test-image]: https://github.com/stdlib-js/array-complex64/actions/workflows/test.yml/badge.svg?branch=v0.3.2
2690-
[test-url]: https://github.com/stdlib-js/array-complex64/actions/workflows/test.yml?query=branch:v0.3.2
2689+
[test-image]: https://github.com/stdlib-js/array-complex64/actions/workflows/test.yml/badge.svg?branch=main
2690+
[test-url]: https://github.com/stdlib-js/array-complex64/actions/workflows/test.yml?query=branch:main
26912691

26922692
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-complex64/main.svg
26932693
[coverage-url]: https://codecov.io/github/stdlib-js/array-complex64?branch=main

benchmark/benchmark.at.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@
2323
var bench = require( '@stdlib/bench-harness' );
2424
var Complex64 = require( '@stdlib/complex-float32-ctor' );
2525
var isComplex64 = require( '@stdlib/assert-is-complex64' );
26+
var format = require( '@stdlib/string-format' );
2627
var pkg = require( './../package.json' ).name;
2728
var Complex64Array = require( './../lib' );
2829

2930

3031
// MAIN //
3132

32-
bench( pkg+'::nonnegative_indices:at', function benchmark( b ) {
33+
bench( format( '%s::nonnegative_indices:at', pkg ), function benchmark( b ) {
3334
var arr;
3435
var N;
3536
var z;
@@ -57,7 +58,7 @@ bench( pkg+'::nonnegative_indices:at', function benchmark( b ) {
5758
b.end();
5859
});
5960

60-
bench( pkg+'::negative_indices:at', function benchmark( b ) {
61+
bench( format( '%s::negative_indices:at', pkg ), function benchmark( b ) {
6162
var arr;
6263
var N;
6364
var z;

benchmark/benchmark.copy_within.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@
2222

2323
var bench = require( '@stdlib/bench-harness' );
2424
var Complex64 = require( '@stdlib/complex-float32-ctor' );
25+
var format = require( '@stdlib/string-format' );
2526
var pkg = require( './../package.json' ).name;
2627
var Complex64Array = require( './../lib' );
2728

2829

2930
// MAIN //
3031

31-
bench( pkg+':copyWithin:len=5', function benchmark( b ) {
32+
bench( format( '%s:copyWithin:len=5', pkg ), function benchmark( b ) {
3233
var arr;
3334
var buf;
3435
var i;

benchmark/benchmark.copy_within.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
var bench = require( '@stdlib/bench-harness' );
2424
var pow = require( '@stdlib/math-base-special-pow' );
2525
var Complex64 = require( '@stdlib/complex-float32-ctor' );
26+
var format = require( '@stdlib/string-format' );
2627
var pkg = require( './../package.json' ).name;
2728
var Complex64Array = require( './../lib' );
2829

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

benchmark/benchmark.entries.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@
2222

2323
var bench = require( '@stdlib/bench-harness' );
2424
var Complex64 = require( '@stdlib/complex-float32-ctor' );
25+
var format = require( '@stdlib/string-format' );
2526
var pkg = require( './../package.json' ).name;
2627
var Complex64Array = require( './../lib' );
2728

2829

2930
// MAIN //
3031

31-
bench( pkg+':entries:len=10', function benchmark( b ) {
32+
bench( format( '%s:entries:len=10', pkg ), function benchmark( b ) {
3233
var iter;
3334
var arr;
3435
var i;

benchmark/benchmark.every.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@
2323
var bench = require( '@stdlib/bench-harness' );
2424
var isComplex64 = require( '@stdlib/assert-is-complex64' );
2525
var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
26+
var format = require( '@stdlib/string-format' );
2627
var pkg = require( './../package.json' ).name;
2728
var Complex64Array = require( './../lib' );
2829

2930

3031
// MAIN //
3132

32-
bench( pkg+':every', function benchmark( b ) {
33+
bench( format( '%s:every', pkg ), function benchmark( b ) {
3334
var bool;
3435
var arr;
3536
var i;

benchmark/benchmark.every.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ var pow = require( '@stdlib/math-base-special-pow' );
2626
var Complex64 = require( '@stdlib/complex-float32-ctor' );
2727
var realf = require( '@stdlib/complex-float32-real' );
2828
var imagf = require( '@stdlib/complex-float32-imag' );
29+
var format = require( '@stdlib/string-format' );
2930
var pkg = require( './../package.json' ).name;
3031
var Complex64Array = require( './../lib' );
3132

@@ -111,7 +112,7 @@ function main() {
111112
for ( i = min; i <= max; i++ ) {
112113
len = pow( 10, i );
113114
f = createBenchmark( len );
114-
bench( pkg+':every:len='+len, f );
115+
bench( format( '%s:every:len=%d', pkg, len ), f );
115116
}
116117
}
117118

benchmark/benchmark.fill.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@
2323
var bench = require( '@stdlib/bench-harness' );
2424
var Complex64 = require( '@stdlib/complex-float32-ctor' );
2525
var isComplex64Array = require( '@stdlib/assert-is-complex64array' );
26+
var format = require( '@stdlib/string-format' );
2627
var pkg = require( './../package.json' ).name;
2728
var Complex64Array = require( './../lib' );
2829

2930

3031
// MAIN //
3132

32-
bench( pkg+':fill', function benchmark( b ) {
33+
bench( format( '%s:fill', pkg ), function benchmark( b ) {
3334
var values;
3435
var arr;
3536
var out;

benchmark/benchmark.fill.length.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 pow = require( '@stdlib/math-base-special-pow' );
2525
var Complex64 = require( '@stdlib/complex-float32-ctor' );
2626
var isComplex64Array = require( '@stdlib/assert-is-complex64array' );
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829
var Complex64Array = require( './../lib' );
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+':fill:len='+len, f );
99+
bench( format( '%s:fill:len=%d', pkg, len ), f );
99100
}
100101
}
101102

0 commit comments

Comments
 (0)