Skip to content

Commit fa02da2

Browse files
committed
Auto-generated commit
1 parent 4cc8d7b commit fa02da2

File tree

7 files changed

+16
-12
lines changed

7 files changed

+16
-12
lines changed

CHANGELOG.md

Lines changed: 3 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 (2024-11-21)
7+
## Unreleased (2024-12-02)
88

99
<section class="packages">
1010

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

181181
<details>
182182

183+
- [`a80835b`](https://github.com/stdlib-js/stdlib/commit/a80835b8f9959a15751adfce5572bb2b29cfeeed) - **refactor:** declare parameters and pointer as const _(by Philipp Burckhardt)_
184+
- [`6c020d3`](https://github.com/stdlib-js/stdlib/commit/6c020d33665c4aec232196fd86214b296ddc7d36) - **chore:** use relative paths to load package.json file _(by Philipp Burckhardt)_
183185
- [`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)_
184186
- [`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)_
185187

CONTRIBUTORS

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Contributors listed in alphabetical order.
44

55
Aayush Khanna <[email protected]>
6-
AbhijitRaut04 <[email protected].com>
6+
Abhijit Raut <abhijitmraut8010@gmail.com>
77
Adarsh Palaskar <[email protected]>
88
Aditya Sapra <[email protected]>
99
AgPriyanshu18 <[email protected]>
@@ -44,18 +44,18 @@ Joey Reed <[email protected]>
4444
Jordan Gallivan <[email protected]>
4545
Joris Labie <[email protected]>
4646
Justin Dennison <[email protected]>
47-
Kaif Mohd <[email protected]>
4847
Karthik Prakash <[email protected]>
4948
5049
Kohantika Nath <[email protected]>
5150
Krishnendu Das <[email protected]>
51+
Kshitij-Dale <[email protected]>
5252
5353
Manik Sharma <[email protected]>
5454
Marcus Fantham <[email protected]>
5555
Matt Cochrane <[email protected]>
5656
Mihir Pandit <[email protected]>
5757
Milan Raj <[email protected]>
58-
Mohammad Kaif <[email protected].com>
58+
Mohammad Kaif <mdkaifprofession@gmail.com>
5959
Momtchil Momtchev <[email protected]>
6060
Muhammad Haris <[email protected]>
6161
Naresh Jagadeesan <[email protected]>
@@ -83,6 +83,7 @@ Roman Stetsyk <[email protected]>
8383
8484
Ruthwik Chikoti <[email protected]>
8585
Ryan Seal <[email protected]>
86+
Rylan Yang <[email protected]>
8687
Sai Srikar Dumpeti <[email protected]>
8788
SarthakPaandey <[email protected]>
8889
Saurabh Singh <[email protected]>
@@ -106,6 +107,7 @@ Utkarsh Raj <[email protected]>
106107
UtkershBasnet <[email protected]>
107108
Vaibhav Patel <[email protected]>
108109
Varad Gupta <[email protected]>
110+
Vinit Pandit <[email protected]>
109111
Xiaochuan Ye <[email protected]>
110112
Yernar Yergaziyev <[email protected]>
111113

base/broadcast-shapes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ The function accepts the following arguments:
311311
- **out**: `[out] int64_t*` output shape array.
312312

313313
```c
314-
int8_t stdlib_ndarray_broadcast_shapes( int64_t M, int64_t *shapes[], const int64_t ndims[], int64_t *out );
314+
int8_t stdlib_ndarray_broadcast_shapes( const int64_t M, const int64_t *shapes[], const int64_t ndims[], int64_t *out );
315315
```
316316
317317
If successful, the function returns `0`; otherwise, the function returns `-1` (e.g., due to incompatible shapes).

base/broadcast-shapes/include/stdlib/ndarray/base/broadcast_shapes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ extern "C" {
3131
/**
3232
* Broadcasts array shapes to a single shape.
3333
*/
34-
int8_t stdlib_ndarray_broadcast_shapes( int64_t M, int64_t *shapes[], int64_t ndims[], int64_t *out );
34+
int8_t stdlib_ndarray_broadcast_shapes( const int64_t M, const int64_t *shapes[], const int64_t ndims[], int64_t *out );
3535

3636
#ifdef __cplusplus
3737
}

base/broadcast-shapes/src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
* int64_t out[] = { 0, 0, 0, 0 };
5656
* int8_t status = stdlib_ndarray_broadcast_shapes( 2, shapes, ndims, out );
5757
*/
58-
int8_t stdlib_ndarray_broadcast_shapes( int64_t M, int64_t *shapes[], const int64_t ndims[], int64_t *out ) {
58+
int8_t stdlib_ndarray_broadcast_shapes( const int64_t M, const int64_t *shapes[], const int64_t ndims[], int64_t *out ) {
5959
int64_t dim;
60-
int64_t *sh;
60+
const int64_t *sh;
6161
int64_t n1;
6262
int64_t n2;
6363
int64_t d;

base/fill/benchmark/benchmark.1d_rowmajor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' );
2525
var pow = require( '@stdlib/math/base/special/pow' );
2626
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
2727
var shape2strides = require( './../../../base/shape2strides' );
28-
var pkg = require( './../../../base/fill/package.json' ).name;
29-
var fill = require( './../../../base/fill/lib' );
28+
var pkg = require( './../package.json' ).name;
29+
var fill = require( './../lib' );
3030

3131

3232
// VARIABLES //

base/fill/benchmark/benchmark.5d_columnmajor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ var pow = require( '@stdlib/math/base/special/pow' );
2727
var floor = require( '@stdlib/math/base/special/floor' );
2828
var filledarrayBy = require( '@stdlib/array/filled-by' );
2929
var shape2strides = require( './../../../base/shape2strides' );
30-
var pkg = require( './../../../base/fill/package.json' ).name;
31-
var fill = require( './../../../base/fill/lib' );
30+
var pkg = require( './../package.json' ).name;
31+
var fill = require( './../lib' );
3232

3333

3434
// VARIABLES //

0 commit comments

Comments
 (0)