Skip to content

Commit c33e2e9

Browse files
committed
Auto-generated commit
1 parent 6b565c4 commit c33e2e9

File tree

66 files changed

+162
-96
lines changed

Some content is hidden

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

66 files changed

+162
-96
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-02-15)
7+
## Unreleased (2026-02-16)
88

99
<section class="features">
1010

@@ -260,6 +260,7 @@ A total of 36 issues were closed in this release:
260260

261261
<details>
262262

263+
- [`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)_
263264
- [`bb63f81`](https://github.com/stdlib-js/stdlib/commit/bb63f8127455cd4fc055aec5aa600f4e5b1eafb5) - **bench:** refactor to use string interpolation in `array/zeros` [(#10272)](https://github.com/stdlib-js/stdlib/pull/10272) _(by Aman Singh)_
264265
- [`b816c5e`](https://github.com/stdlib-js/stdlib/commit/b816c5eed90e36341b7688cecf3c5ee688e0a001) - **bench:** refactor to use string interpolation in `array/int32` [(#10275)](https://github.com/stdlib-js/stdlib/pull/10275) _(by Shubham)_
265266
- [`6e63e9c`](https://github.com/stdlib-js/stdlib/commit/6e63e9ce06c0b20294f1b019b955ee0f3f881568) - **bench:** refactor to use string interpolation in `array/int8` [(#10192)](https://github.com/stdlib-js/stdlib/pull/10192) _(by Shubham)_

complex64/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' );
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;

complex64/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' );
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;

complex64/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' );
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

complex64/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' );
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;

complex64/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' );
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;

complex64/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

complex64/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' );
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;

complex64/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' );
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

complex64/benchmark/benchmark.filter.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' );
2424
var isComplex64 = require( '@stdlib/assert/is-complex64' );
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+':filter', function benchmark( b ) {
33+
bench( format( '%s:filter', pkg ), function benchmark( b ) {
3334
var out;
3435
var arr;
3536
var i;

0 commit comments

Comments
 (0)