Skip to content

Commit e1cdc56

Browse files
committed
Auto-generated commit
1 parent c5a8451 commit e1cdc56

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-01-08)
7+
## Unreleased (2025-01-11)
88

99
<section class="features">
1010

@@ -32,6 +32,7 @@
3232

3333
<details>
3434

35+
- [`aa5eadc`](https://github.com/stdlib-js/stdlib/commit/aa5eadcaa2fa6e03f504918953a247f68ac26a47) - **refactor:** use stdlib dependencies instead of math.h in `stats/base/dcuminabs` [(#4699)](https://github.com/stdlib-js/stdlib/pull/4699) _(by Aayush Khanna)_
3536
- [`99378ce`](https://github.com/stdlib-js/stdlib/commit/99378ce076b7c6ec7b0ff29aa1ad8feac9121113) - **fix:** wrap void function call in `API_SUFFIX` [(#4603)](https://github.com/stdlib-js/stdlib/pull/4603) _(by Aayush Khanna)_
3637
- [`205c6ed`](https://github.com/stdlib-js/stdlib/commit/205c6edb5d756c2e5892c12e18b75a525f4e943f) - **chore:** disable lint rule _(by Philipp Burckhardt)_
3738
- [`ff7a8c1`](https://github.com/stdlib-js/stdlib/commit/ff7a8c145900de9b8af74ba06e763b8113dcdec1) - **docs:** add missing spaces _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ Joey Reed <joeyrreed@gmail.com>
5050
Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
5151
Joris Labie <joris.labie1@gmail.com>
5252
Justin Dennison <justin1dennison@gmail.com>
53+
Karan Anand <119553199+anandkaranubc@users.noreply.github.com>
5354
Karthik Prakash <116057817+skoriop@users.noreply.github.com>
5455
Kohantika Nath <145763549+kohantikanath@users.noreply.github.com>
5556
Krishnendu Das <86651039+itskdhere@users.noreply.github.com>

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ void API_SUFFIX(stdlib_strided_dcuminabs_ndarray)( const CBLAS_INT N, const doub
6969
if ( !stdlib_base_is_nan( min ) ) {
7070
for (; i < N; i++ ) {
7171
ix += strideX;
72-
v = fabs( X[ ix ] );
72+
v = stdlib_base_abs( X[ ix ] );
7373
if ( stdlib_base_is_nan( v ) ) {
7474
min = v;
7575
break;

0 commit comments

Comments
 (0)