Skip to content

Commit f72adc4

Browse files
committed
Auto-generated commit
1 parent 3b97015 commit f72adc4

3 files changed

Lines changed: 50 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-08-09)
7+
## Unreleased (2026-08-10)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`47fac55`](https://github.com/stdlib-js/stdlib/commit/47fac55c2a9246770f30d4700f65e9972c75c12d) - add `ctriu`, `gtriu`, `striu`, and `ztriu` to namespace
14+
- [`919e1ca`](https://github.com/stdlib-js/stdlib/commit/919e1ca6ee507c854ba542ec5c24bd1cd058ef38) - add `ccopyWithin` to namespace
1315
- [`f24cab5`](https://github.com/stdlib-js/stdlib/commit/f24cab5f78d5faed964a927a1fe873e6396219e5) - add `blas/ext/base/ccopy-within` [(#14007)](https://github.com/stdlib-js/stdlib/pull/14007)
1416
- [`9f9dfc5`](https://github.com/stdlib-js/stdlib/commit/9f9dfc5c6df0ec6a5b9752567cdb78812825c93b) - add `blas/ext/base/ndarray/gtriu` [(#14107)](https://github.com/stdlib-js/stdlib/pull/14107)
1517
- [`375701a`](https://github.com/stdlib-js/stdlib/commit/375701a0232fa37fdf0a44db0c826b33aca577eb) - add `blas/ext/base/ndarray/ctriu` [(#14104)](https://github.com/stdlib-js/stdlib/pull/14104)
@@ -476,6 +478,8 @@ A total of 4 issues were closed in this release:
476478

477479
<details>
478480

481+
- [`47fac55`](https://github.com/stdlib-js/stdlib/commit/47fac55c2a9246770f30d4700f65e9972c75c12d) - **feat:** add `ctriu`, `gtriu`, `striu`, and `ztriu` to namespace _(by Athan Reines)_
482+
- [`919e1ca`](https://github.com/stdlib-js/stdlib/commit/919e1ca6ee507c854ba542ec5c24bd1cd058ef38) - **feat:** add `ccopyWithin` to namespace _(by Athan Reines)_
479483
- [`f24cab5`](https://github.com/stdlib-js/stdlib/commit/f24cab5f78d5faed964a927a1fe873e6396219e5) - **feat:** add `blas/ext/base/ccopy-within` [(#14007)](https://github.com/stdlib-js/stdlib/pull/14007) _(by Muhammad Haris, Athan Reines)_
480484
- [`3208321`](https://github.com/stdlib-js/stdlib/commit/320832192c8d32b18d24c7342ba1cf03cc5affea) - **bench:** refactor to use dynamic memory allocation [(#14099)](https://github.com/stdlib-js/stdlib/pull/14099) _(by Philipp Burckhardt, Athan Reines)_
481485
- [`9f9dfc5`](https://github.com/stdlib-js/stdlib/commit/9f9dfc5c6df0ec6a5b9752567cdb78812825c93b) - **feat:** add `blas/ext/base/ndarray/gtriu` [(#14107)](https://github.com/stdlib-js/stdlib/pull/14107) _(by Kaustubh Patange, Athan Reines)_

ext/base/lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,15 @@ setReadOnly( ns, 'caxpb', require( './../../../ext/base/caxpb' ) );
6565
*/
6666
setReadOnly( ns, 'caxpby', require( './../../../ext/base/caxpby' ) );
6767

68+
/**
69+
* @name ccopyWithin
70+
* @memberof ns
71+
* @readonly
72+
* @type {Function}
73+
* @see {@link module:@stdlib/blas/ext/base/ccopy-within}
74+
*/
75+
setReadOnly( ns, 'ccopyWithin', require( './../../../ext/base/ccopy-within' ) );
76+
6877
/**
6978
* @name cdiff
7079
* @memberof ns

ext/base/ndarray/lib/index.js

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,15 @@ setReadOnly( ns, 'csum', require( './../../../../ext/base/ndarray/csum' ) );
9999
*/
100100
setReadOnly( ns, 'csumkbn', require( './../../../../ext/base/ndarray/csumkbn' ) );
101101

102+
/**
103+
* @name ctriu
104+
* @memberof ns
105+
* @readonly
106+
* @type {Function}
107+
* @see {@link module:@stdlib/blas/ext/base/ndarray/ctriu}
108+
*/
109+
setReadOnly( ns, 'ctriu', require( './../../../../ext/base/ndarray/ctriu' ) );
110+
102111
/**
103112
* @name cunitspace
104113
* @memberof ns
@@ -918,6 +927,15 @@ setReadOnly( ns, 'gsumors', require( './../../../../ext/base/ndarray/gsumors' )
918927
*/
919928
setReadOnly( ns, 'gsumpw', require( './../../../../ext/base/ndarray/gsumpw' ) );
920929

930+
/**
931+
* @name gtriu
932+
* @memberof ns
933+
* @readonly
934+
* @type {Function}
935+
* @see {@link module:@stdlib/blas/ext/base/ndarray/gtriu}
936+
*/
937+
setReadOnly( ns, 'gtriu', require( './../../../../ext/base/ndarray/gtriu' ) );
938+
921939
/**
922940
* @name gunitspace
923941
* @memberof ns
@@ -1260,6 +1278,15 @@ setReadOnly( ns, 'ssumors', require( './../../../../ext/base/ndarray/ssumors' )
12601278
*/
12611279
setReadOnly( ns, 'ssumpw', require( './../../../../ext/base/ndarray/ssumpw' ) );
12621280

1281+
/**
1282+
* @name striu
1283+
* @memberof ns
1284+
* @readonly
1285+
* @type {Function}
1286+
* @see {@link module:@stdlib/blas/ext/base/ndarray/striu}
1287+
*/
1288+
setReadOnly( ns, 'striu', require( './../../../../ext/base/ndarray/striu' ) );
1289+
12631290
/**
12641291
* @name sunitspace
12651292
* @memberof ns
@@ -1395,6 +1422,15 @@ setReadOnly( ns, 'zsum', require( './../../../../ext/base/ndarray/zsum' ) );
13951422
*/
13961423
setReadOnly( ns, 'zsumkbn', require( './../../../../ext/base/ndarray/zsumkbn' ) );
13971424

1425+
/**
1426+
* @name ztriu
1427+
* @memberof ns
1428+
* @readonly
1429+
* @type {Function}
1430+
* @see {@link module:@stdlib/blas/ext/base/ndarray/ztriu}
1431+
*/
1432+
setReadOnly( ns, 'ztriu', require( './../../../../ext/base/ndarray/ztriu' ) );
1433+
13981434
/**
13991435
* @name zunitspace
14001436
* @memberof ns

0 commit comments

Comments
 (0)