Skip to content

Commit 6538f97

Browse files
committed
Auto-generated commit
1 parent 62b103a commit 6538f97

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222

2323
<details>
2424

25+
- [`7b5a1b5`](https://github.com/stdlib-js/stdlib/commit/7b5a1b57e9d707ea3944a616d775620a8f188bd8) - **test:** add test case for sx _(by Philipp Burckhardt)_
26+
- [`df82f00`](https://github.com/stdlib-js/stdlib/commit/df82f006202c8ade82178b4f7839063706723894) - **docs:** fix require path _(by Philipp Burckhardt)_
2527
- [`016b07f`](https://github.com/stdlib-js/stdlib/commit/016b07f8610e21332af7bfbc38afbacdbeac8583) - **refactor:** rename/reorder parameters _(by Athan Reines)_
2628
- [`f40ccb7`](https://github.com/stdlib-js/stdlib/commit/f40ccb75929e92538b8c366145589addccdaafbe) - **feat:** add `ndarray/base/ternary-loop-interchange-order` [(#9499)](https://github.com/stdlib-js/stdlib/pull/9499) _(by Muhammad Haris, Athan Reines)_
2729

@@ -35,10 +37,11 @@
3537

3638
### Contributors
3739

38-
A total of 2 people contributed to this release. Thank you to the following contributors:
40+
A total of 3 people contributed to this release. Thank you to the following contributors:
3941

4042
- Athan Reines
4143
- Muhammad Haris
44+
- Philipp Burckhardt
4245

4346
</section>
4447

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ To view installation and usage instructions specific to each branch build, be su
7070
## Usage
7171

7272
```javascript
73-
var ternaryLoopOrder = require( '@stdlib/ndarray-base-binary-loop-interchange-order' );
73+
var ternaryLoopOrder = require( '@stdlib/ndarray-base-ternary-loop-interchange-order' );
7474
```
7575

7676
#### ternaryLoopOrder( shape, stridesX, stridesY, stridesZ, stridesW )
@@ -140,7 +140,7 @@ For all returned arrays, the first element corresponds to the innermost loop, an
140140
var array = require( '@stdlib/ndarray-array' );
141141
var getShape = require( '@stdlib/ndarray-shape' );
142142
var getStrides = require( '@stdlib/ndarray-strides' );
143-
var ternaryLoopOrder = require( '@stdlib/ndarray-base-binary-loop-interchange-order' );
143+
var ternaryLoopOrder = require( '@stdlib/ndarray-base-ternary-loop-interchange-order' );
144144

145145
// Create ndarrays:
146146
var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );

test/test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@ tape( 'the function returns loop interchange data (all disorganized)', function
231231
tape( 'if provided empty arrays, the function returns empty arrays', function test( t ) {
232232
var o = ternaryLoopOrder( [], [], [], [], [] );
233233
t.deepEqual( o.sh, [], 'returns expected value' );
234+
t.deepEqual( o.sx, [], 'returns expected value' );
234235
t.deepEqual( o.sy, [], 'returns expected value' );
235236
t.deepEqual( o.sz, [], 'returns expected value' );
236237
t.deepEqual( o.sw, [], 'returns expected value' );

0 commit comments

Comments
 (0)