Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
stdlib-bot committed Dec 2, 2024
1 parent 4cc8d7b commit fa02da2
Showing 7 changed files with 16 additions and 12 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-11-21)
## Unreleased (2024-12-02)

<section class="packages">

@@ -180,6 +180,8 @@ A total of 1 person contributed to this release. Thank you to this contributor:

<details>

- [`a80835b`](https://github.com/stdlib-js/stdlib/commit/a80835b8f9959a15751adfce5572bb2b29cfeeed) - **refactor:** declare parameters and pointer as const _(by Philipp Burckhardt)_
- [`6c020d3`](https://github.com/stdlib-js/stdlib/commit/6c020d33665c4aec232196fd86214b296ddc7d36) - **chore:** use relative paths to load package.json file _(by Philipp Burckhardt)_
- [`b6a2b0b`](https://github.com/stdlib-js/stdlib/commit/b6a2b0b27dc8cc1e9fc02d9679a3ce468cf49b9d) - **docs:** update namespace table of contents [(#3192)](https://github.com/stdlib-js/stdlib/pull/3192) _(by stdlib-bot, Philipp Burckhardt)_
- [`8b1548f`](https://github.com/stdlib-js/stdlib/commit/8b1548fb45c1ff131f5edac20cb984344a2d28ec) - **feat:** update namespace TypeScript declarations [(#3190)](https://github.com/stdlib-js/stdlib/pull/3190) _(by stdlib-bot, Philipp Burckhardt)_

8 changes: 5 additions & 3 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
# Contributors listed in alphabetical order.

Aayush Khanna <[email protected]>
AbhijitRaut04 <[email protected].com>
Abhijit Raut <abhijitmraut8010@gmail.com>
Adarsh Palaskar <[email protected]>
Aditya Sapra <[email protected]>
AgPriyanshu18 <[email protected]>
@@ -44,18 +44,18 @@ Joey Reed <[email protected]>
Jordan Gallivan <[email protected]>
Joris Labie <[email protected]>
Justin Dennison <[email protected]>
Kaif Mohd <[email protected]>
Karthik Prakash <[email protected]>
Khaldon <[email protected]>
Kohantika Nath <[email protected]>
Krishnendu Das <[email protected]>
Kshitij-Dale <[email protected]>
Lovelin <[email protected]>
Manik Sharma <[email protected]>
Marcus Fantham <[email protected]>
Matt Cochrane <[email protected]>
Mihir Pandit <[email protected]>
Milan Raj <[email protected]>
Mohammad Kaif <[email protected].com>
Mohammad Kaif <mdkaifprofession@gmail.com>
Momtchil Momtchev <[email protected]>
Muhammad Haris <[email protected]>
Naresh Jagadeesan <[email protected]>
@@ -83,6 +83,7 @@ Roman Stetsyk <[email protected]>
Rutam <[email protected]>
Ruthwik Chikoti <[email protected]>
Ryan Seal <[email protected]>
Rylan Yang <[email protected]>
Sai Srikar Dumpeti <[email protected]>
SarthakPaandey <[email protected]>
Saurabh Singh <[email protected]>
@@ -106,6 +107,7 @@ Utkarsh Raj <[email protected]>
UtkershBasnet <[email protected]>
Vaibhav Patel <[email protected]>
Varad Gupta <[email protected]>
Vinit Pandit <[email protected]>
Xiaochuan Ye <[email protected]>
Yernar Yergaziyev <[email protected]>
naveen <[email protected]>
2 changes: 1 addition & 1 deletion base/broadcast-shapes/README.md
Original file line number Diff line number Diff line change
@@ -311,7 +311,7 @@ The function accepts the following arguments:
- **out**: `[out] int64_t*` output shape array.

```c
int8_t stdlib_ndarray_broadcast_shapes( int64_t M, int64_t *shapes[], const int64_t ndims[], int64_t *out );
int8_t stdlib_ndarray_broadcast_shapes( const int64_t M, const int64_t *shapes[], const int64_t ndims[], int64_t *out );
```
If successful, the function returns `0`; otherwise, the function returns `-1` (e.g., due to incompatible shapes).
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ extern "C" {
/**
* Broadcasts array shapes to a single shape.
*/
int8_t stdlib_ndarray_broadcast_shapes( int64_t M, int64_t *shapes[], int64_t ndims[], int64_t *out );
int8_t stdlib_ndarray_broadcast_shapes( const int64_t M, const int64_t *shapes[], const int64_t ndims[], int64_t *out );

#ifdef __cplusplus
}
4 changes: 2 additions & 2 deletions base/broadcast-shapes/src/main.c
Original file line number Diff line number Diff line change
@@ -55,9 +55,9 @@
* int64_t out[] = { 0, 0, 0, 0 };
* int8_t status = stdlib_ndarray_broadcast_shapes( 2, shapes, ndims, out );
*/
int8_t stdlib_ndarray_broadcast_shapes( int64_t M, int64_t *shapes[], const int64_t ndims[], int64_t *out ) {
int8_t stdlib_ndarray_broadcast_shapes( const int64_t M, const int64_t *shapes[], const int64_t ndims[], int64_t *out ) {
int64_t dim;
int64_t *sh;
const int64_t *sh;
int64_t n1;
int64_t n2;
int64_t d;
4 changes: 2 additions & 2 deletions base/fill/benchmark/benchmark.1d_rowmajor.js
Original file line number Diff line number Diff line change
@@ -25,8 +25,8 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' );
var pow = require( '@stdlib/math/base/special/pow' );
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
var shape2strides = require( './../../../base/shape2strides' );
var pkg = require( './../../../base/fill/package.json' ).name;
var fill = require( './../../../base/fill/lib' );
var pkg = require( './../package.json' ).name;
var fill = require( './../lib' );


// VARIABLES //
4 changes: 2 additions & 2 deletions base/fill/benchmark/benchmark.5d_columnmajor.js
Original file line number Diff line number Diff line change
@@ -27,8 +27,8 @@ var pow = require( '@stdlib/math/base/special/pow' );
var floor = require( '@stdlib/math/base/special/floor' );
var filledarrayBy = require( '@stdlib/array/filled-by' );
var shape2strides = require( './../../../base/shape2strides' );
var pkg = require( './../../../base/fill/package.json' ).name;
var fill = require( './../../../base/fill/lib' );
var pkg = require( './../package.json' ).name;
var fill = require( './../lib' );


// VARIABLES //

0 comments on commit fa02da2

Please sign in to comment.