Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Dec 15, 2024
1 parent b313b0a commit 8694cfb
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -1180,6 +1180,9 @@ A total of 8 people contributed to this release. Thank you to the following cont

<details>

- [`0e887d5`](https://github.com/stdlib-js/stdlib/commit/0e887d567344c8a31a382266389022ec26f2bcca) - **style:** add missing spaces _(by Philipp Burckhardt)_
- [`ff25e13`](https://github.com/stdlib-js/stdlib/commit/ff25e1324e1507cc076078e82badce7fdf7915f6) - **docs:** remove excess whitespace _(by Philipp Burckhardt)_
- [`cfc0665`](https://github.com/stdlib-js/stdlib/commit/cfc0665435a1f99158d7fed39b8873dea6aa6209) - **docs:** add missing private tag _(by Philipp Burckhardt)_
- [`b8c41df`](https://github.com/stdlib-js/stdlib/commit/b8c41df78cd2cdc9cd3c3c6b223759d32f4f6e14) - **docs:** update related packages sections [(#3915)](https://github.com/stdlib-js/stdlib/pull/3915) _(by stdlib-bot)_
- [`1a202e3`](https://github.com/stdlib-js/stdlib/commit/1a202e3605b10cd01bf9654f8356c72c5c8a8186) - **feat:** update namespace TypeScript declarations [(#3916)](https://github.com/stdlib-js/stdlib/pull/3916) _(by stdlib-bot, Philipp Burckhardt)_
- [`ef82c21`](https://github.com/stdlib-js/stdlib/commit/ef82c2133cc2cb955eb1fc73da0209eda97de59a) - **docs:** update namespace table of contents [(#3918)](https://github.com/stdlib-js/stdlib/pull/3918) _(by stdlib-bot, Philipp Burckhardt)_
Expand Down
1 change: 1 addition & 0 deletions base/dcabs1/lib/native.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ var addon = require( './../src/addon.node' );
/**
* Computes the sum of the absolute value of the real and imaginary part of a double-precision complex floating-point number.
*
* @private
* @param {Complex128} z - complex number
* @returns {number} result
*
Expand Down
6 changes: 3 additions & 3 deletions ext/base/dapx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,13 +240,13 @@ int main( void ) {

// Specify the number of indexed elements:
const int N = 8;

// Specify a stride:
const int strideX = 1;

// Fill the array:
c_dapx( N, 5.0, x, strideX );

// Print the result:
for ( int i = 0; i < 8; i++ ) {
printf( "x[ %i ] = %lf\n", i, x[ i ] );
Expand Down
6 changes: 3 additions & 3 deletions ext/base/dapxsumors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,13 +246,13 @@ int main( void ) {

// Specify the number of indexed elements:
const int N = 8;

// Specify a stride:
const int strideX = 1;

// Compute the sum:
double v = stdlib_strided_dapxsumors( N, 5.0, x, strideX );

// Print the result:
printf( "Sum: %lf\n", sum );
}
Expand Down
2 changes: 1 addition & 1 deletion ext/base/dcusumkbn/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* @param Y output array
* @param strideY Y stride length
*/
void API_SUFFIX(stdlib_strided_dcusumkbn)( const CBLAS_INT N, const double sum, const double *X, const CBLAS_INT strideX, double *Y, const CBLAS_INT strideY ){
void API_SUFFIX(stdlib_strided_dcusumkbn)( const CBLAS_INT N, const double sum, const double *X, const CBLAS_INT strideX, double *Y, const CBLAS_INT strideY ) {
const CBLAS_INT ox = stdlib_strided_stride2offset( N, strideX );
const CBLAS_INT oy = stdlib_strided_stride2offset( N, strideY );
API_SUFFIX(stdlib_strided_dcusumkbn_ndarray)( N, sum, X, strideX, ox, Y, strideY, oy );
Expand Down
2 changes: 1 addition & 1 deletion ext/base/snansum/src/addon.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
/**
* Add-on namespace.
*/
static napi_value addon( napi_env env, napi_callback_info info ){
static napi_value addon( napi_env env, napi_callback_info info ) {
STDLIB_NAPI_ARGV( env, info, argv, argc, 3 );
STDLIB_NAPI_ARGV_INT64( env, N, argv, 0 );
STDLIB_NAPI_ARGV_INT64( env, stride, argv, 2 );
Expand Down

0 comments on commit 8694cfb

Please sign in to comment.