File tree Expand file tree Collapse file tree
base/ndarray/dcumaxabs/benchmark Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3735,6 +3735,7 @@ A total of 576 issues were closed in this release:
37353735
37363736<details>
37373737
3738+ - [`296dfd1`](https://github.com/stdlib-js/stdlib/commit/296dfd170d555b2ae2f7670439305c64b306ed76) - **bench:** use string interpolation in `stats/base/ndarray/dcumaxabs` [(#10877)](https://github.com/stdlib-js/stdlib/pull/10877) _(by Om-A-osc)_
37383739- [`6aae9eb`](https://github.com/stdlib-js/stdlib/commit/6aae9eb4034e9ff338a75ec59a1c56a26a46b2b4) - **bench:** use string interpolation in `stats/base/ndarray/dcumin` [(#10878)](https://github.com/stdlib-js/stdlib/pull/10878) _(by Om-A-osc)_
37393740- [`11c4748`](https://github.com/stdlib-js/stdlib/commit/11c4748879f58bc0fd46e70354c73f617f85a1c7) - **bench:** use string interpolation in `stats/base/ndarray/dcuminabs` [(#10879)](https://github.com/stdlib-js/stdlib/pull/10879) _(by Om-A-osc)_
37403741- [`db2c323`](https://github.com/stdlib-js/stdlib/commit/db2c3239074dab803cc302baa478c033ef4a1e3b) - **bench:** refactor to use string interpolation in `stats/array/stdev` [(#10792)](https://github.com/stdlib-js/stdlib/pull/10792) _(by Aniket Sonawane, Athan Reines)_
Original file line number Diff line number Diff line change 2222
2323var bench = require ( '@stdlib/bench' ) ;
2424var uniform = require ( '@stdlib/random/array/uniform' ) ;
25+ var format = require ( '@stdlib/string/format' ) ;
2526var zeros = require ( '@stdlib/array/zeros' ) ;
2627var isnan = require ( '@stdlib/math/base/assert/is-nan' ) ;
2728var pow = require ( '@stdlib/math/base/special/pow' ) ;
@@ -107,7 +108,7 @@ function main() {
107108 for ( i = min ; i <= max ; i ++ ) {
108109 len = pow ( 10 , i ) ;
109110 f = createBenchmark ( len ) ;
110- bench ( pkg + ' :len=' + len , f ) ;
111+ bench ( format ( '%s :len=%d' , pkg , len ) , f ) ;
111112 }
112113}
113114
You can’t perform that action at this time.
0 commit comments