Skip to content

Commit b92723b

Browse files
committed
Auto-generated commit
1 parent c33e2e9 commit b92723b

56 files changed

Lines changed: 112 additions & 56 deletions

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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ A total of 36 issues were closed in this release:
260260

261261
<details>
262262

263+
- [`e1fa36c`](https://github.com/stdlib-js/stdlib/commit/e1fa36c2e0773845bab939eb700d3ee665a5cec9) - **bench:** refactor to use string interpolation in `array/complex128` [(#10301)](https://github.com/stdlib-js/stdlib/pull/10301) _(by Shubham)_
263264
- [`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)_
264265
- [`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)_
265266
- [`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)_

complex128/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 Complex128 = require( '@stdlib/complex/float64/ctor' );
2525
var isComplex128 = require( '@stdlib/assert/is-complex128' );
26+
var format = require( '@stdlib/string/format' );
2627
var pkg = require( './../package.json' ).name;
2728
var Complex128Array = 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;

complex128/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 isComplex128 = require( '@stdlib/assert/is-complex128' );
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 Complex128Array = 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;

complex128/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 Complex128 = require( '@stdlib/complex/float64/ctor' );
2727
var real = require( '@stdlib/complex/float64/real' );
2828
var imag = require( '@stdlib/complex/float64/imag' );
29+
var format = require( '@stdlib/string/format' );
2930
var pkg = require( './../package.json' ).name;
3031
var Complex128Array = 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

complex128/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 Complex128 = require( '@stdlib/complex/float64/ctor' );
2525
var isComplex128Array = require( '@stdlib/assert/is-complex128array' );
26+
var format = require( '@stdlib/string/format' );
2627
var pkg = require( './../package.json' ).name;
2728
var Complex128Array = 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;

complex128/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 Complex128 = require( '@stdlib/complex/float64/ctor' );
2626
var isComplex128Array = require( '@stdlib/assert/is-complex128array' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var Complex128Array = 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

complex128/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 isComplex128 = require( '@stdlib/assert/is-complex128' );
2525
var isComplex128Array = require( '@stdlib/assert/is-complex128array' );
26+
var format = require( '@stdlib/string/format' );
2627
var pkg = require( './../package.json' ).name;
2728
var Complex128Array = 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;

complex128/benchmark/benchmark.filter.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 Complex128 = require( '@stdlib/complex/float64/ctor' );
2727
var real = require( '@stdlib/complex/float64/real' );
2828
var imag = require( '@stdlib/complex/float64/imag' );
29+
var format = require( '@stdlib/string/format' );
2930
var pkg = require( './../package.json' ).name;
3031
var Complex128Array = 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+':filter:len='+len, f );
115+
bench( format( '%s:filter:len=%d', pkg, len ), f );
115116
}
116117
}
117118

complex128/benchmark/benchmark.find.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 isComplex128 = require( '@stdlib/assert/is-complex128' );
25+
var format = require( '@stdlib/string/format' );
2526
var pkg = require( './../package.json' ).name;
2627
var Complex128Array = require( './../lib' );
2728

2829

2930
// MAIN //
3031

31-
bench( pkg+':find', function benchmark( b ) {
32+
bench( format( '%s:find', pkg ), function benchmark( b ) {
3233
var arr;
3334
var z;
3435
var i;

complex128/benchmark/benchmark.find.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ var Complex128 = require( '@stdlib/complex/float64/ctor' );
2626
var isComplex128 = require( '@stdlib/assert/is-complex128' );
2727
var real = require( '@stdlib/complex/float64/real' );
2828
var imag = require( '@stdlib/complex/float64/imag' );
29+
var format = require( '@stdlib/string/format' );
2930
var pkg = require( './../package.json' ).name;
3031
var Complex128Array = require( './../lib' );
3132

@@ -112,7 +113,7 @@ function main() {
112113
for ( i = min; i <= max; i++ ) {
113114
len = pow( 10, i );
114115
f = createBenchmark( len );
115-
bench( pkg+':find:len='+len, f );
116+
bench( format( '%s:find:len=%d', pkg, len ), f );
116117
}
117118
}
118119

0 commit comments

Comments
 (0)