Skip to content

Commit 95c3848

Browse files
committed
Auto-generated commit
1 parent dad2d78 commit 95c3848

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -689,6 +689,8 @@ A total of 38 issues were closed in this release:
689689

690690
<details>
691691

692+
- [`7b5a1b5`](https://github.com/stdlib-js/stdlib/commit/7b5a1b57e9d707ea3944a616d775620a8f188bd8) - **test:** add test case for sx _(by Philipp Burckhardt)_
693+
- [`df82f00`](https://github.com/stdlib-js/stdlib/commit/df82f006202c8ade82178b4f7839063706723894) - **docs:** fix require path _(by Philipp Burckhardt)_
692694
- [`016b07f`](https://github.com/stdlib-js/stdlib/commit/016b07f8610e21332af7bfbc38afbacdbeac8583) - **refactor:** rename/reorder parameters _(by Athan Reines)_
693695
- [`5f0a844`](https://github.com/stdlib-js/stdlib/commit/5f0a844380510aaa97c8ca7d1b539868132ae2e7) - **refactor:** rename/reorder parameters _(by Athan Reines)_
694696
- [`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)_

base/ternary-loop-interchange-order/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ limitations under the License.
3737
## Usage
3838

3939
```javascript
40-
var ternaryLoopOrder = require( '@stdlib/ndarray/base/binary-loop-interchange-order' );
40+
var ternaryLoopOrder = require( '@stdlib/ndarray/base/ternary-loop-interchange-order' );
4141
```
4242

4343
#### ternaryLoopOrder( shape, stridesX, stridesY, stridesZ, stridesW )
@@ -107,7 +107,7 @@ For all returned arrays, the first element corresponds to the innermost loop, an
107107
var array = require( '@stdlib/ndarray/array' );
108108
var getShape = require( '@stdlib/ndarray/shape' );
109109
var getStrides = require( '@stdlib/ndarray/strides' );
110-
var ternaryLoopOrder = require( '@stdlib/ndarray/base/binary-loop-interchange-order' );
110+
var ternaryLoopOrder = require( '@stdlib/ndarray/base/ternary-loop-interchange-order' );
111111

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

base/ternary-loop-interchange-order/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)