Skip to content

Commit 8fa4b39

Browse files
committed
Auto-generated commit
1 parent d55ba6d commit 8fa4b39

Some content is hidden

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

54 files changed

+127
-74
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ A total of 37 issues were closed in this release:
260260

261261
<details>
262262

263+
- [`1edd771`](https://github.com/stdlib-js/stdlib/commit/1edd7712b2a114f8717a751714624f9e23af1bc4) - **bench:** refactor to use string interpolation in `array/float64` [(#11094)](https://github.com/stdlib-js/stdlib/pull/11094) _(by Partha Das, Athan Reines)_
263264
- [`12db091`](https://github.com/stdlib-js/stdlib/commit/12db091f535461d7b4a0df5d3d47627ad9234da2) - **chore:** fix JavaScript lint errors [(#10804)](https://github.com/stdlib-js/stdlib/pull/10804) _(by Aniket Sonawane)_
264265
- [`4ef61be`](https://github.com/stdlib-js/stdlib/commit/4ef61be14fae1ba8a9f1bc2d6ef0caaf648ee5be) - **bench:** refactor to use string interpolation in `array/base/flatten-by` [(#10678)](https://github.com/stdlib-js/stdlib/pull/10678) _(by Siddhartha Mondal)_
265266
- [`c1b4d2c`](https://github.com/stdlib-js/stdlib/commit/c1b4d2c8d7097c74e941eb9ebbee8e4f8c6f2b29) - **bench:** refactor to use string interpolation in `array/base/filter` [(#10644)](https://github.com/stdlib-js/stdlib/pull/10644) _(by Rohit R Bhat)_
@@ -765,7 +766,7 @@ A total of 37 issues were closed in this release:
765766

766767
### Contributors
767768

768-
A total of 39 people contributed to this release. Thank you to the following contributors:
769+
A total of 40 people contributed to this release. Thank you to the following contributors:
769770

770771
- Aayush Khanna
771772
- Abhijit Raut
@@ -792,6 +793,7 @@ A total of 39 people contributed to this release. Thank you to the following con
792793
- Muskaan Shraogi
793794
- Nakul Krishnakumar
794795
- Neeraj Pathak
796+
- Partha Das
795797
- Philipp Burckhardt
796798
- Rohit R Bhat
797799
- Rylan Yang

float64/benchmark/benchmark.copy_within.js

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

2323
var bench = require( '@stdlib/bench' );
24+
var format = require( '@stdlib/string/format' );
2425
var pkg = require( './../package.json' ).name;
2526
var Float64Array = require( './../lib' );
2627

2728

2829
// MAIN //
2930

30-
bench( pkg+':copyWithin', function benchmark( b ) {
31+
bench( format( '%s:copyWithin', pkg ), function benchmark( b ) {
3132
var arr;
3233
var i;
3334

float64/benchmark/benchmark.copy_within.length.js

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

2323
var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
25+
var format = require( '@stdlib/string/format' );
2526
var pkg = require( './../package.json' ).name;
2627
var Float64Array = require( './../lib' );
2728

@@ -86,7 +87,7 @@ function main() {
8687
for ( i = min; i <= max; i++ ) {
8788
len = pow( 10, i );
8889
f = createBenchmark( len );
89-
bench( pkg+':copyWithin:len='+len, f );
90+
bench( format( '%s:copyWithin:len=%d', pkg, len ), f );
9091
}
9192
}
9293

float64/benchmark/benchmark.data.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,14 @@
2121
// MODULES //
2222

2323
var bench = require( '@stdlib/bench' );
24+
var format = require( '@stdlib/string/format' );
2425
var pkg = require( './../package.json' ).name;
2526
var Float64Array = require( './../lib' );
2627

2728

2829
// MAIN //
2930

30-
bench( pkg+'::get,index', function benchmark( b ) {
31+
bench( format( '%s::get,index', pkg ), function benchmark( b ) {
3132
var arr;
3233
var N;
3334
var v;
@@ -51,7 +52,7 @@ bench( pkg+'::get,index', function benchmark( b ) {
5152
b.end();
5253
});
5354

54-
bench( pkg+'::set,index', function benchmark( b ) {
55+
bench( format( '%s::set,index', pkg ), function benchmark( b ) {
5556
var arr;
5657
var N;
5758
var i;

float64/benchmark/benchmark.entries.js

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

2323
var bench = require( '@stdlib/bench' );
24+
var format = require( '@stdlib/string/format' );
2425
var pkg = require( './../package.json' ).name;
2526
var Float64Array = require( './../lib' );
2627

2728

2829
// MAIN //
2930

30-
bench( pkg+':entries', function benchmark( b ) {
31+
bench( format( '%s:entries', pkg ), function benchmark( b ) {
3132
var iter;
3233
var arr;
3334
var i;

float64/benchmark/benchmark.every.js

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

2323
var bench = require( '@stdlib/bench' );
2424
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
25+
var format = require( '@stdlib/string/format' );
2526
var pkg = require( './../package.json' ).name;
2627
var Float64Array = require( './../lib' );
2728

2829

2930
// MAIN //
3031

31-
bench( pkg+':every', function benchmark( b ) {
32+
bench( format( '%s:every', pkg ), function benchmark( b ) {
3233
var bool;
3334
var arr;
3435
var i;
@@ -54,7 +55,7 @@ bench( pkg+':every', function benchmark( b ) {
5455
}
5556
});
5657

57-
bench( pkg+'::this_context:every', function benchmark( b ) {
58+
bench( format( '%s::this_context:every', pkg ), function benchmark( b ) {
5859
var bool;
5960
var arr;
6061
var i;

float64/benchmark/benchmark.every.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 isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
26+
var format = require( '@stdlib/string/format' );
2627
var pkg = require( './../package.json' ).name;
2728
var Float64Array = require( './../lib' );
2829

@@ -98,7 +99,7 @@ function main() {
9899
for ( i = min; i <= max; i++ ) {
99100
len = pow( 10, i );
100101
f = createBenchmark( len );
101-
bench( pkg+':every:len='+len, f );
102+
bench( format( '%s:every:len=%d', pkg, len ), f );
102103
}
103104
}
104105

float64/benchmark/benchmark.fill.js

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

2323
var bench = require( '@stdlib/bench' );
24+
var format = require( '@stdlib/string/format' );
2425
var pkg = require( './../package.json' ).name;
2526
var Float64Array = require( './../lib' );
2627

2728

2829
// MAIN //
2930

30-
bench( pkg+':fill', function benchmark( b ) {
31+
bench( format( '%s:fill', pkg ), function benchmark( b ) {
3132
var arr;
3233
var v;
3334
var i;

float64/benchmark/benchmark.fill.length.js

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

2323
var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
25+
var format = require( '@stdlib/string/format' );
2526
var pkg = require( './../package.json' ).name;
2627
var Float64Array = require( './../lib' );
2728

@@ -87,7 +88,7 @@ function main() {
8788
for ( i = min; i <= max; i++ ) {
8889
len = pow( 10, i );
8990
f = createBenchmark( len );
90-
bench( pkg+':fill:len='+len, f );
91+
bench( format( '%s:fill:len=%d', pkg, len ), f );
9192
}
9293
}
9394

0 commit comments

Comments
 (0)