Skip to content

Commit 7007cda

Browse files
committed
Auto-generated commit
1 parent 8c74125 commit 7007cda

File tree

5 files changed

+36
-3
lines changed

5 files changed

+36
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
### Features
1212

13+
- [`a11b832`](https://github.com/stdlib-js/stdlib/commit/a11b832b9c10879eedf7b86dc83772d6abef7931) - add `csum` to namespace
14+
- [`28b0465`](https://github.com/stdlib-js/stdlib/commit/28b046502e53a887c1eb70f712b223a60d4c7833) - add `blas/ext/base/ndarray/csum`
1315
- [`e30c3ba`](https://github.com/stdlib-js/stdlib/commit/e30c3baa0ea634ee95dfb857b56bc3b8eb57e3f3) - add `zsum` to namespace
1416
- [`d1c43bf`](https://github.com/stdlib-js/stdlib/commit/d1c43bf928d136b64bce740e38fae1e23d482c23) - add `blas/ext/base/ndarray/zsum`
1517
- [`0dd7923`](https://github.com/stdlib-js/stdlib/commit/0dd7923fb188e73cb3d60f54fb97195e4cf15ea9) - add `gcusum` to namespace
@@ -27,12 +29,27 @@
2729

2830
<!-- /.features -->
2931

32+
<section class="bug-fixes">
33+
34+
### Bug Fixes
35+
36+
- [`3014ce9`](https://github.com/stdlib-js/stdlib/commit/3014ce93b3fd6a8d7d26b7951d762f5100faffdf) - update return type
37+
- [`2acc7f0`](https://github.com/stdlib-js/stdlib/commit/2acc7f03aa6e89410deb74d99f466cc1cd400384) - update return type
38+
39+
</section>
40+
41+
<!-- /.bug-fixes -->
42+
3043
<section class="commits">
3144

3245
### Commits
3346

3447
<details>
3548

49+
- [`3014ce9`](https://github.com/stdlib-js/stdlib/commit/3014ce93b3fd6a8d7d26b7951d762f5100faffdf) - **fix:** update return type _(by Athan Reines)_
50+
- [`2acc7f0`](https://github.com/stdlib-js/stdlib/commit/2acc7f03aa6e89410deb74d99f466cc1cd400384) - **fix:** update return type _(by Athan Reines)_
51+
- [`a11b832`](https://github.com/stdlib-js/stdlib/commit/a11b832b9c10879eedf7b86dc83772d6abef7931) - **feat:** add `csum` to namespace _(by Athan Reines)_
52+
- [`28b0465`](https://github.com/stdlib-js/stdlib/commit/28b046502e53a887c1eb70f712b223a60d4c7833) - **feat:** add `blas/ext/base/ndarray/csum` _(by Athan Reines)_
3653
- [`e30c3ba`](https://github.com/stdlib-js/stdlib/commit/e30c3baa0ea634ee95dfb857b56bc3b8eb57e3f3) - **feat:** add `zsum` to namespace _(by Athan Reines)_
3754
- [`d1c43bf`](https://github.com/stdlib-js/stdlib/commit/d1c43bf928d136b64bce740e38fae1e23d482c23) - **feat:** add `blas/ext/base/ndarray/zsum` _(by Athan Reines)_
3855
- [`b9d5fc2`](https://github.com/stdlib-js/stdlib/commit/b9d5fc27dcdc1d57f94f63be1d05276c63025c14) - **docs:** update namespace table of contents [(#6819)](https://github.com/stdlib-js/stdlib/pull/6819) _(by stdlib-bot, Philipp Burckhardt)_

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,15 @@ var setReadOnly = require( '@stdlib/utils-define-read-only-property' );
3636
*/
3737
var ns = {};
3838

39+
/**
40+
* @name csum
41+
* @memberof ns
42+
* @readonly
43+
* @type {Function}
44+
* @see {@link module:@stdlib/blas/ext/base/ndarray/csum}
45+
*/
46+
setReadOnly( ns, 'csum', require( '@stdlib/blas-ext-base-ndarray-csum' ) );
47+
3948
/**
4049
* @name dcusum
4150
* @memberof ns

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
"url": "https://github.com/stdlib-js/stdlib/issues"
3737
},
3838
"dependencies": {
39+
"@stdlib/blas-ext-base-ndarray-csum": "github:stdlib-js/blas-ext-base-ndarray-csum#main",
3940
"@stdlib/blas-ext-base-ndarray-dcusum": "github:stdlib-js/blas-ext-base-ndarray-dcusum#main",
4041
"@stdlib/blas-ext-base-ndarray-dsum": "github:stdlib-js/blas-ext-base-ndarray-dsum#main",
4142
"@stdlib/blas-ext-base-ndarray-gcusum": "github:stdlib-js/blas-ext-base-ndarray-gcusum#main",
@@ -47,20 +48,26 @@
4748
},
4849
"devDependencies": {
4950
"@stdlib/array-complex128": "^0.3.0",
51+
"@stdlib/array-complex64": "^0.3.0",
5052
"@stdlib/array-float32": "^0.2.2",
5153
"@stdlib/array-float64": "^0.2.2",
5254
"@stdlib/array-zeros": "^0.2.2",
5355
"@stdlib/assert-is-same-array": "^0.2.2",
5456
"@stdlib/assert-is-same-complex128": "^0.2.2",
57+
"@stdlib/assert-is-same-complex64": "^0.2.2",
5558
"@stdlib/assert-is-same-float32array": "^0.2.2",
5659
"@stdlib/assert-is-same-float64array": "^0.2.2",
60+
"@stdlib/blas-ext-base-csum": "github:stdlib-js/blas-ext-base-csum#main",
5761
"@stdlib/blas-ext-base-dcusum": "^0.2.2",
5862
"@stdlib/blas-ext-base-dsum": "^0.2.2",
5963
"@stdlib/blas-ext-base-gcusum": "^0.2.2",
6064
"@stdlib/blas-ext-base-gsum": "^0.2.2",
6165
"@stdlib/blas-ext-base-scusum": "^0.2.2",
6266
"@stdlib/blas-ext-base-ssum": "^0.2.2",
6367
"@stdlib/blas-ext-base-zsum": "github:stdlib-js/blas-ext-base-zsum#main",
68+
"@stdlib/complex-float32-ctor": "^0.0.2",
69+
"@stdlib/complex-float32-imag": "^0.1.1",
70+
"@stdlib/complex-float32-real": "^0.1.1",
6471
"@stdlib/complex-float64-ctor": "^0.0.3",
6572
"@stdlib/complex-float64-imag": "^0.1.1",
6673
"@stdlib/complex-float64-real": "^0.1.1",

0 commit comments

Comments
 (0)