Skip to content

Commit 237b453

Browse files
committed
Auto-generated commit
1 parent c59b465 commit 237b453

File tree

121 files changed

+241
-120
lines changed

Some content is hidden

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

121 files changed

+241
-120
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -853,6 +853,7 @@ A total of 53 issues were closed in this release:
853853

854854
<details>
855855

856+
- [`5cd4771`](https://github.com/stdlib-js/stdlib/commit/5cd4771232fb55177f21eae72c44ddf62d9fe6d6) - **bench:** refactor to use string interpolation in `blas/ext/base` [(#11376)](https://github.com/stdlib-js/stdlib/pull/11376) _(by Karan Anand)_
856857
- [`8b35b4c`](https://github.com/stdlib-js/stdlib/commit/8b35b4cef53d3b11df972158e90fe90da6f31234) - **bench:** refactor to use string interpolation in `blas/ext/base` [(#11375)](https://github.com/stdlib-js/stdlib/pull/11375) _(by Karan Anand)_
857858
- [`06cfc24`](https://github.com/stdlib-js/stdlib/commit/06cfc24f6e476f83649e6e35cacfee6b1a525a66) - **bench:** refactor to use string interpolation in `blas/ext/base` [(#11377)](https://github.com/stdlib-js/stdlib/pull/11377) _(by Karan Anand)_
858859
- [`39db70f`](https://github.com/stdlib-js/stdlib/commit/39db70f0446038735b98e82abc26b369ac34938f) - **bench:** refactor to use string interpolation in `@stdlib/blas` [(#11397)](https://github.com/stdlib-js/stdlib/pull/11397) _(by Karan Anand)_

ext/base/dsorthp/benchmark/benchmark.mostly_sorted_few_uniques.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ var pow = require( '@stdlib/math/base/special/pow' );
2727
var floor = require( '@stdlib/math/base/special/floor' );
2828
var Float64Array = require( '@stdlib/array/float64' );
2929
var dcopy = require( './../../../../base/dcopy' );
30+
var format = require( '@stdlib/string/format' );
3031
var pkg = require( './../package.json' ).name;
3132
var dsorthp = require( './../lib/dsorthp.js' );
3233

@@ -124,7 +125,7 @@ function main() {
124125
opts = {
125126
'iterations': iter
126127
};
127-
bench( pkg+'::mostly_sorted,few_uniques:len='+len, opts, f );
128+
bench( format( '%s::mostly_sorted,few_uniques:len=%d', pkg, len ), opts, f );
128129
iter = floor( pow( iter, 3.0/4.0 ) );
129130
}
130131
}

ext/base/dsorthp/benchmark/benchmark.mostly_sorted_few_uniques.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ var floor = require( '@stdlib/math/base/special/floor' );
2929
var Float64Array = require( '@stdlib/array/float64' );
3030
var dcopy = require( './../../../../base/dcopy' );
3131
var tryRequire = require( '@stdlib/utils/try-require' );
32+
var format = require( '@stdlib/string/format' );
3233
var pkg = require( './../package.json' ).name;
3334

3435

@@ -134,7 +135,7 @@ function main() {
134135
'skip': opts.skip,
135136
'iterations': iter
136137
};
137-
bench( pkg+'::native,mostly_sorted,few_uniques:len='+len, bopts, f );
138+
bench( format( '%s::native,mostly_sorted,few_uniques:len=%d', pkg, len ), bopts, f );
138139
iter = floor( pow( iter, 3.0/4.0 ) );
139140
}
140141
}

ext/base/dsorthp/benchmark/benchmark.mostly_sorted_few_uniques.ndarray.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ var pow = require( '@stdlib/math/base/special/pow' );
2727
var floor = require( '@stdlib/math/base/special/floor' );
2828
var Float64Array = require( '@stdlib/array/float64' );
2929
var dcopy = require( './../../../../base/dcopy' );
30+
var format = require( '@stdlib/string/format' );
3031
var pkg = require( './../package.json' ).name;
3132
var dsorthp = require( './../lib/ndarray.js' );
3233

@@ -124,7 +125,7 @@ function main() {
124125
opts = {
125126
'iterations': iter
126127
};
127-
bench( pkg+'::mostly_sorted,few_uniques:ndarray:len='+len, opts, f );
128+
bench( format( '%s::mostly_sorted,few_uniques:ndarray:len=%d', pkg, len ), opts, f );
128129
iter = floor( pow( iter, 3.0/4.0 ) );
129130
}
130131
}

ext/base/dsorthp/benchmark/benchmark.mostly_sorted_few_uniques.ndarray.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ var floor = require( '@stdlib/math/base/special/floor' );
2929
var Float64Array = require( '@stdlib/array/float64' );
3030
var dcopy = require( './../../../../base/dcopy' );
3131
var tryRequire = require( '@stdlib/utils/try-require' );
32+
var format = require( '@stdlib/string/format' );
3233
var pkg = require( './../package.json' ).name;
3334

3435

@@ -134,7 +135,7 @@ function main() {
134135
'skip': opts.skip,
135136
'iterations': iter
136137
};
137-
bench( pkg+'::native,mostly_sorted,few_uniques:ndarray:len='+len, bopts, f );
138+
bench( format( '%s::native,mostly_sorted,few_uniques:ndarray:len=%d', pkg, len ), bopts, f );
138139
iter = floor( pow( iter, 3.0/4.0 ) );
139140
}
140141
}

ext/base/dsorthp/benchmark/benchmark.mostly_sorted_random.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ var pow = require( '@stdlib/math/base/special/pow' );
2727
var floor = require( '@stdlib/math/base/special/floor' );
2828
var Float64Array = require( '@stdlib/array/float64' );
2929
var dcopy = require( './../../../../base/dcopy' );
30+
var format = require( '@stdlib/string/format' );
3031
var pkg = require( './../package.json' ).name;
3132
var dsorthp = require( './../lib/dsorthp.js' );
3233

@@ -115,7 +116,7 @@ function main() {
115116
opts = {
116117
'iterations': iter
117118
};
118-
bench( pkg+'::mostly_sorted,random:len='+len, opts, f );
119+
bench( format( '%s::mostly_sorted,random:len=%d', pkg, len ), opts, f );
119120
iter = floor( pow( iter, 3.0/4.0 ) );
120121
}
121122
}

ext/base/dsorthp/benchmark/benchmark.mostly_sorted_random.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ var floor = require( '@stdlib/math/base/special/floor' );
2929
var Float64Array = require( '@stdlib/array/float64' );
3030
var dcopy = require( './../../../../base/dcopy' );
3131
var tryRequire = require( '@stdlib/utils/try-require' );
32+
var format = require( '@stdlib/string/format' );
3233
var pkg = require( './../package.json' ).name;
3334

3435

@@ -125,7 +126,7 @@ function main() {
125126
'skip': opts.skip,
126127
'iterations': iter
127128
};
128-
bench( pkg+'::native,mostly_sorted,random:len='+len, bopts, f );
129+
bench( format( '%s::native,mostly_sorted,random:len=%d', pkg, len ), bopts, f );
129130
iter = floor( pow( iter, 3.0/4.0 ) );
130131
}
131132
}

ext/base/dsorthp/benchmark/benchmark.mostly_sorted_random.ndarray.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ var pow = require( '@stdlib/math/base/special/pow' );
2727
var floor = require( '@stdlib/math/base/special/floor' );
2828
var Float64Array = require( '@stdlib/array/float64' );
2929
var dcopy = require( './../../../../base/dcopy' );
30+
var format = require( '@stdlib/string/format' );
3031
var pkg = require( './../package.json' ).name;
3132
var dsorthp = require( './../lib/ndarray.js' );
3233

@@ -115,7 +116,7 @@ function main() {
115116
opts = {
116117
'iterations': iter
117118
};
118-
bench( pkg+'::mostly_sorted,random:ndarray:len='+len, opts, f );
119+
bench( format( '%s::mostly_sorted,random:ndarray:len=%d', pkg, len ), opts, f );
119120
iter = floor( pow( iter, 3.0/4.0 ) );
120121
}
121122
}

ext/base/dsorthp/benchmark/benchmark.mostly_sorted_random.ndarray.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ var floor = require( '@stdlib/math/base/special/floor' );
2929
var Float64Array = require( '@stdlib/array/float64' );
3030
var dcopy = require( './../../../../base/dcopy' );
3131
var tryRequire = require( '@stdlib/utils/try-require' );
32+
var format = require( '@stdlib/string/format' );
3233
var pkg = require( './../package.json' ).name;
3334

3435

@@ -125,7 +126,7 @@ function main() {
125126
'skip': opts.skip,
126127
'iterations': iter
127128
};
128-
bench( pkg+'::native,mostly_sorted,random:ndarray:len='+len, bopts, f );
129+
bench( format( '%s::native,mostly_sorted,random:ndarray:len=%d', pkg, len ), bopts, f );
129130
iter = floor( pow( iter, 3.0/4.0 ) );
130131
}
131132
}

ext/base/dsorthp/benchmark/benchmark.rev_mostly_sorted_few_uniques.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ var pow = require( '@stdlib/math/base/special/pow' );
2727
var floor = require( '@stdlib/math/base/special/floor' );
2828
var Float64Array = require( '@stdlib/array/float64' );
2929
var dcopy = require( './../../../../base/dcopy' );
30+
var format = require( '@stdlib/string/format' );
3031
var pkg = require( './../package.json' ).name;
3132
var dsorthp = require( './../lib/dsorthp.js' );
3233

@@ -124,7 +125,7 @@ function main() {
124125
opts = {
125126
'iterations': iter
126127
};
127-
bench( pkg+'::reverse_mostly_sorted,few_uniques:len='+len, opts, f );
128+
bench( format( '%s::reverse_mostly_sorted,few_uniques:len=%d', pkg, len ), opts, f );
128129
iter = floor( pow( iter, 3.0/4.0 ) );
129130
}
130131
}

0 commit comments

Comments
 (0)