Skip to content

Commit 4119df4

Browse files
committed
Auto-generated commit
1 parent a9242ff commit 4119df4

File tree

4 files changed

+2
-13
lines changed

4 files changed

+2
-13
lines changed

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,8 +257,6 @@ A total of 33 issues were closed in this release:
257257

258258
<details>
259259

260-
- [`40e817d`](https://github.com/stdlib-js/stdlib/commit/40e817dca3683fef6bfaf07526e8428ac3d089d8) - **bench:** refactor to use string interpolation in `array/base/filled4d` [(#9186)](https://github.com/stdlib-js/stdlib/pull/9186) _(by Rohit R Bhat)_
261-
- [`ce79dc0`](https://github.com/stdlib-js/stdlib/commit/ce79dc05e70a1a631c3d23c2f0d2127420537b38) - **bench:** refactor to use string interpolation in `array/base/filled4d-by` [(#9188)](https://github.com/stdlib-js/stdlib/pull/9188) _(by Rohit R Bhat)_
262260
- [`ae947b7`](https://github.com/stdlib-js/stdlib/commit/ae947b78961fba28af4cdc2f4ba54fa5df8b35b3) - **bench:** refactor to use string interpolation in `array/base/filled5d` [(#9189)](https://github.com/stdlib-js/stdlib/pull/9189) _(by Rohit R Bhat)_
263261
- [`028d3db`](https://github.com/stdlib-js/stdlib/commit/028d3db4147f5e4735d81babd193a65c983d87c9) - **bench:** refactor to use string interpolation in `array/base/take3d` [(#9053)](https://github.com/stdlib-js/stdlib/pull/9053) _(by DivitJain26, Athan Reines)_
264262
- [`66dec1e`](https://github.com/stdlib-js/stdlib/commit/66dec1ea2a3186a8b461abc11ad69f1e42b1c478) - **bench:** refactor to use string interpolation in `array/base/take2d` [(#9051)](https://github.com/stdlib-js/stdlib/pull/9051) _(by DivitJain26, Athan Reines)_

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -309,11 +309,6 @@ For more information on the project, filing bug reports and feature requests, an
309309

310310
---
311311

312-
## License
313-
314-
See [LICENSE][stdlib-license].
315-
316-
317312
## Copyright
318313

319314
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
@@ -360,8 +355,6 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
360355
[esm-readme]: https://github.com/stdlib-js/array/blob/esm/README.md
361356
[branches-url]: https://github.com/stdlib-js/array/blob/main/branches.md
362357

363-
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/array/main/LICENSE
364-
365358
<!-- <toc-links> -->
366359

367360
[@stdlib/array/base]: https://github.com/stdlib-js/array/tree/main/base

base/filled4d-by/benchmark/benchmark.size.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ var pow = require( '@stdlib/math/base/special/pow' );
2525
var floor = require( '@stdlib/math/base/special/floor' );
2626
var isArrayArray = require( '@stdlib/assert/is-array-array' );
2727
var constantFunction = require( '@stdlib/utils/constant-function' );
28-
var format = require( '@stdlib/string/format' );
2928
var pkg = require( './../package.json' ).name;
3029
var filled4dBy = require( './../lib' );
3130

@@ -93,7 +92,7 @@ function main() {
9392
N = floor( pow( pow( 10, i ), 1.0/4.0 ) );
9493

9594
f = createBenchmark( N );
96-
bench( format( '%s::equidimensional:size=%d', pkg, N*N*N*N ), f );
95+
bench( pkg+'::equidimensional:size='+(N*N*N*N), f );
9796
}
9897
}
9998

base/filled4d/benchmark/benchmark.size.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
2525
var floor = require( '@stdlib/math/base/special/floor' );
2626
var isArrayArray = require( '@stdlib/assert/is-array-array' );
27-
var format = require( '@stdlib/string/format' );
2827
var pkg = require( './../package.json' ).name;
2928
var filled4d = require( './../lib' );
3029

@@ -89,7 +88,7 @@ function main() {
8988
N = floor( pow( pow( 10, i ), 1.0/4.0 ) );
9089

9190
f = createBenchmark( N );
92-
bench( format( '%s::equidimensional:size=%d', pkg, N*N*N*N ), f );
91+
bench( pkg+'::equidimensional:size='+(N*N*N*N), f );
9392
}
9493
}
9594

0 commit comments

Comments
 (0)