File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,6 @@ indent_style = tab
86
86
[* .{f,f.txt} ]
87
87
indent_style = space
88
88
indent_size = 2
89
- insert_final_newline = false
90
89
91
90
# Set properties for shell files:
92
91
[* .{sh,sh.txt} ]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
5
5
<section class =" release " id =" unreleased " >
6
6
7
- ## Unreleased (2025-01-13 )
7
+ ## Unreleased (2025-01-17 )
8
8
9
9
<section class =" features " >
10
10
20
20
21
21
### Bug Fixes
22
22
23
+ - [ ` 52f7ac2 ` ] ( https://github.com/stdlib-js/stdlib/commit/52f7ac26eff82f57ccfca5a3b04c15dbacad074e ) - use correct stride
23
24
- [ ` 96c7ddf ` ] ( https://github.com/stdlib-js/stdlib/commit/96c7ddfdbcecc6ff60fcb56681db16463d19020e ) - use computed order and fix strides in examples
24
25
- [ ` cf3f92e ` ] ( https://github.com/stdlib-js/stdlib/commit/cf3f92eddd20ec1a4106c8a34f7d7705a9a99dbc ) - update include paths
25
26
33
34
34
35
<details >
35
36
37
+ - [ ` 52f7ac2 ` ] ( https://github.com/stdlib-js/stdlib/commit/52f7ac26eff82f57ccfca5a3b04c15dbacad074e ) - ** fix:** use correct stride _ (by Athan Reines)_
36
38
- [ ` 9f49cfb ` ] ( https://github.com/stdlib-js/stdlib/commit/9f49cfb0e8047348ee5dc24d64bf82afbc7ca644 ) - ** docs:** fix description _ (by Athan Reines)_
37
39
- [ ` f387603 ` ] ( https://github.com/stdlib-js/stdlib/commit/f387603e739f88a38af3263ce6ff675ad903ee8c ) - ** docs:** consistently use declarative instead of imperative sentences outside of intros _ (by Philipp Burckhardt)_
38
40
- [ ` 96c7ddf ` ] ( https://github.com/stdlib-js/stdlib/commit/96c7ddfdbcecc6ff60fcb56681db16463d19020e ) - ** fix:** use computed order and fix strides in examples _ (by Athan Reines)_
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ static int8_t stdlib_ndarray_unary_assign_1d_flatten( const ndarrayUnaryAssignFc
105
105
int64_t sh [] = { N };
106
106
107
107
// Shallow copy and reshape the arrays...
108
- int64_t sx1 [] = { s2 };
108
+ int64_t sx1 [] = { s1 };
109
109
struct ndarray * x1c = stdlib_ndarray_allocate (
110
110
stdlib_ndarray_dtype ( x1 ),
111
111
stdlib_ndarray_data ( x1 ),
@@ -245,6 +245,8 @@ static int8_t stdlib_ndarray_unary_assign_1d_flatten( const ndarrayUnaryAssignFc
245
245
* }
246
246
*/
247
247
int8_t stdlib_ndarray_unary_assign_dispatch ( const struct ndarrayUnaryAssignDispatchObject * obj , struct ndarray * arrays [] ) {
248
+ const int64_t * sh1 ;
249
+ const int64_t * sh2 ;
248
250
struct ndarray * x1 ;
249
251
struct ndarray * x2 ;
250
252
int8_t status ;
@@ -253,8 +255,6 @@ int8_t stdlib_ndarray_unary_assign_dispatch( const struct ndarrayUnaryAssignDisp
253
255
int64_t mab2 ;
254
256
int64_t mib1 ;
255
257
int64_t mib2 ;
256
- int64_t * sh1 ;
257
- int64_t * sh2 ;
258
258
int64_t * s1 ;
259
259
int64_t * s2 ;
260
260
int64_t len ;
You can’t perform that action at this time.
0 commit comments