Skip to content

Commit 3dc5108

Browse files
committed
Auto-generated commit
1 parent 01845be commit 3dc5108

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 12 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-02)
7+
## Unreleased (2025-01-08)
88

99
<section class="features">
1010

@@ -16,12 +16,23 @@
1616

1717
<!-- /.features -->
1818

19+
<section class="bug-fixes">
20+
21+
### Bug Fixes
22+
23+
- [`99378ce`](https://github.com/stdlib-js/stdlib/commit/99378ce076b7c6ec7b0ff29aa1ad8feac9121113) - wrap void function call in `API_SUFFIX` [(#4603)](https://github.com/stdlib-js/stdlib/pull/4603)
24+
25+
</section>
26+
27+
<!-- /.bug-fixes -->
28+
1929
<section class="commits">
2030

2131
### Commits
2232

2333
<details>
2434

35+
- [`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)_
2536
- [`095586c`](https://github.com/stdlib-js/stdlib/commit/095586cf396939fe7379ea9cee817bc0d77e2fea) - **style:** fix indentation _(by Philipp Burckhardt)_
2637
- [`6ec8074`](https://github.com/stdlib-js/stdlib/commit/6ec8074bd6e6c406a743cb8a18a7eb220efa7423) - **feat:** add C ndarray interface and refactor implementation for `stats/base/dcumax` [(#4137)](https://github.com/stdlib-js/stdlib/pull/4137) _(by Aayush Khanna, Athan Reines)_
2738
- [`62364f6`](https://github.com/stdlib-js/stdlib/commit/62364f62ea823a3b52c2ad25660ecd80c71f8f36) - **style:** fix C comment alignment _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Daniel Killenberger <daniel.killenberger@gmail.com>
2727
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
2828
Debashis Maharana <debashismaharana7854@gmail.com>
2929
Desh Deepak Kant <118960904+DeshDeepakKant@users.noreply.github.com>
30+
Dhruv Arvind Singh <154677013+DhruvArvindSingh@users.noreply.github.com>
3031
Divyansh Seth <59174836+sethdivyansh@users.noreply.github.com>
3132
Dominic Lim <46486515+domlimm@users.noreply.github.com>
3233
Dominik Moritz <domoritz@gmail.com>
@@ -117,7 +118,7 @@ UtkershBasnet <119008923+UtkershBasnet@users.noreply.github.com>
117118
Vaibhav Patel <98279986+noobCoderVP@users.noreply.github.com>
118119
Varad Gupta <varadgupta21@gmail.com>
119120
Vinit Pandit <106718914+MeastroZI@users.noreply.github.com>
120-
Vivek maurya <155618190+vivekmaurya001@users.noreply.github.com>
121+
Vivek Maurya <vm8118134@gmail.com>
121122
Xiaochuan Ye <tap91624@gmail.com>
122123
Yaswanth Kosuru <116426380+yaswanthkosuru@users.noreply.github.com>
123124
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (c) 2016-2024 The Stdlib Authors.
1+
Copyright (c) 2016-2025 The Stdlib Authors.

src/addon.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include "stdlib/napi/export.h"
2121
#include "stdlib/napi/argv.h"
2222
#include "stdlib/napi/argv_int64.h"
23+
#include "stdlib/blas/base/shared.h"
2324
#include "stdlib/napi/argv_strided_float64array.h"
2425
#include <node_api.h>
2526

@@ -37,7 +38,7 @@ static napi_value addon( napi_env env, napi_callback_info info ) {
3738
STDLIB_NAPI_ARGV_INT64( env, strideY, argv, 4 );
3839
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, X, N, strideX, argv, 1 );
3940
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, Y, N, strideY, argv, 3 );
40-
stdlib_strided_dcumax( N, X, strideX, Y, strideY );
41+
API_SUFFIX(stdlib_strided_dcumax)( N, X, strideX, Y, strideY );
4142
return NULL;
4243
}
4344

@@ -57,7 +58,7 @@ static napi_value addon_method( napi_env env, napi_callback_info info ) {
5758
STDLIB_NAPI_ARGV_INT64( env, offsetY, argv, 6 );
5859
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, X, N, strideX, argv, 1 );
5960
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, Y, N, strideY, argv, 4 );
60-
stdlib_strided_dcumax_ndarray( N, X, strideX, offsetX, Y, strideY, offsetY );
61+
API_SUFFIX(stdlib_strided_dcumax_ndarray)( N, X, strideX, offsetX, Y, strideY, offsetY );
6162
return NULL;
6263
}
6364

0 commit comments

Comments
 (0)