Skip to content

Commit 1c9d089

Browse files
committed
Auto-generated commit
1 parent 2f77e9f commit 1c9d089

File tree

14 files changed

+321
-24
lines changed

14 files changed

+321
-24
lines changed

.github/.keepalive

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

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-02-03)
7+
## Unreleased (2025-02-08)
88

99
<section class="features">
1010

@@ -34,6 +34,7 @@ This release closes the following issue:
3434

3535
<details>
3636

37+
- [`60334d6`](https://github.com/stdlib-js/stdlib/commit/60334d6d17a9f29c0045c139b8ede24d1182b870) - **refactor:** update paths _(by gururaj1512)_
3738
- [`f71dbdc`](https://github.com/stdlib-js/stdlib/commit/f71dbdc7ea992486cdc2042c24a6d4a2b57c002e) - **feat:** add `array/base/broadcasted/quaternary5d` [(#3301)](https://github.com/stdlib-js/stdlib/pull/3301) _(by Gururaj Gurram, Athan Reines, stdlib-bot)_
3839

3940
</details>
@@ -46,10 +47,11 @@ This release closes the following issue:
4647

4748
### Contributors
4849

49-
A total of 2 people contributed to this release. Thank you to the following contributors:
50+
A total of 3 people contributed to this release. Thank you to the following contributors:
5051

5152
- Athan Reines
5253
- Gururaj Gurram
54+
- gururaj1512
5355

5456
</section>
5557

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ Marcus Fantham <[email protected]>
6363
Matt Cochrane <[email protected]>
6464
Mihir Pandit <[email protected]>
6565
Milan Raj <[email protected]>
66+
Mohammad Bin Aftab <[email protected]>
6667
Mohammad Kaif <[email protected]>
6768
Momtchil Momtchev <[email protected]>
6869
Muhammad Haris <[email protected]>
@@ -125,5 +126,6 @@ Xiaochuan Ye <[email protected]>
125126
Yaswanth Kosuru <[email protected]>
126127
Yernar Yergaziyev <[email protected]>
127128
olenkabilonizhka <[email protected]>
129+
pranav-1720 <[email protected]>
128130
129131

README.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ var bquaternary5d = require( '@stdlib/array-base-broadcasted-quaternary5d' );
7474
Applies a quaternary callback to elements in four [broadcasted][@stdlib/array/base/broadcast-array] input arrays and assigns results to elements in a five-dimensional nested output array.
7575

7676
```javascript
77-
var add = require( '@stdlib/math-base-ops-add4' );
77+
var add = require( '@stdlib/number-float64-base-add4' );
7878
var zeros5d = require( '@stdlib/array-base-zeros5d' );
7979

8080
var x = [ [ 1.0, 2.0 ] ];
@@ -125,7 +125,7 @@ The function accepts the following arguments:
125125
var discreteUniform = require( '@stdlib/random-base-discrete-uniform' ).factory;
126126
var filled5dBy = require( '@stdlib/array-base-filled5d-by' );
127127
var zeros5d = require( '@stdlib/array-base-zeros5d' );
128-
var add = require( '@stdlib/math-base-ops-add4' );
128+
var add = require( '@stdlib/number-float64-base-add4' );
129129
var bquaternary5d = require( '@stdlib/array-base-broadcasted-quaternary5d' );
130130

131131
var shapes = [
@@ -186,11 +186,6 @@ For more information on the project, filing bug reports and feature requests, an
186186

187187
---
188188

189-
## License
190-
191-
See [LICENSE][stdlib-license].
192-
193-
194189
## Copyright
195190

196191
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
@@ -237,8 +232,6 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
237232
[esm-readme]: https://github.com/stdlib-js/array-base-broadcasted-quaternary5d/blob/esm/README.md
238233
[branches-url]: https://github.com/stdlib-js/array-base-broadcasted-quaternary5d/blob/main/branches.md
239234

240-
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/array-base-broadcasted-quaternary5d/main/LICENSE
241-
242235
[@stdlib/array/base/broadcast-array]: https://github.com/stdlib-js/array-base-broadcast-array
243236

244237
[@stdlib/ndarray/base/broadcast-shapes]: https://github.com/stdlib-js/ndarray-base-broadcast-shapes

benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var uniform = require( '@stdlib/random-base-uniform' ).factory;
2525
var isnan = require( '@stdlib/math-base-assert-is-nan' );
2626
var pow = require( '@stdlib/math-base-special-pow' );
2727
var floor = require( '@stdlib/math-base-special-floor' );
28-
var add = require( '@stdlib/math-base-ops-add4' );
28+
var add = require( '@stdlib/number-float64-base-add4' );
2929
var filled5dBy = require( '@stdlib/array-base-filled5d-by' );
3030
var zeros5d = require( '@stdlib/array-base-zeros5d' );
3131
var numel = require( '@stdlib/ndarray-base-numel' );

dist/index.js

Lines changed: 42 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)