Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Aug 1, 2024
1 parent 6222e80 commit 9347d75
Show file tree
Hide file tree
Showing 3 changed files with 225 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@

##### Features

- [`f1128aa`](https://github.com/stdlib-js/stdlib/commit/f1128aa2432497a7297ad1cc733de562f44169d5) - add `zaxpy`, `zdrot`, and `zscal` to namespace
- [`10640df`](https://github.com/stdlib-js/stdlib/commit/10640dfff29bff48cc339c31c0fe98ab5a5d2ff3) - add `sspmv`, `ssymv`, `ssyr`, `ssyr2`, and `strmv` to namespace
- [`1457b6c`](https://github.com/stdlib-js/stdlib/commit/1457b6c9c2107f5888436df9f0897a22ad39c16a) - add `sgemv`, `srot`, and `srotm` to namespace
- [`4c3c742`](https://github.com/stdlib-js/stdlib/commit/4c3c7423c16b928960bcd21a5bb13669c02118ba) - add `scasum` and `scnrm2` to namespace
- [`ed6504f`](https://github.com/stdlib-js/stdlib/commit/ed6504f204b1b4b531977b93e49c24238aee8715) - add `dtrmv` and `dznrm2` to namespace
- [`38b338d`](https://github.com/stdlib-js/stdlib/commit/38b338d6d08bfe3e523ba02bf977430d320cbf03) - add `dspmv`, `dsymv`, `dsyr`, and `dsyr2` to namespace
- [`d039a63`](https://github.com/stdlib-js/stdlib/commit/d039a63eabd3956155b01fbe11c5e89e94930c2a) - add `csrot`, `drot` and `drotm` to namespace
- [`66d501a`](https://github.com/stdlib-js/stdlib/commit/66d501a60b22b7cd23cf7e79f768027ad1d8c6e5) - add `caxpy` to namespace
- [`722452c`](https://github.com/stdlib-js/stdlib/commit/722452c97282738c0a83e336720c63ee785bc69f) - rename 'none' transpose operation to 'no-transpose'
- [`dd73ff2`](https://github.com/stdlib-js/stdlib/commit/dd73ff27e89fc2a39e2fb8a6f54d8b1a1a29f575) - update namespace TypeScript declarations [(#2514)](https://github.com/stdlib-js/stdlib/pull/2514)
- [`48703d8`](https://github.com/stdlib-js/stdlib/commit/48703d8deabd12050c18f7382c966df26d5239a3) - add utilities to namespace
Expand Down Expand Up @@ -2863,6 +2871,14 @@ A total of 35 people contributed to this release. Thank you to the following con

<details>

- [`f1128aa`](https://github.com/stdlib-js/stdlib/commit/f1128aa2432497a7297ad1cc733de562f44169d5) - **feat:** add `zaxpy`, `zdrot`, and `zscal` to namespace _(by Athan Reines)_
- [`10640df`](https://github.com/stdlib-js/stdlib/commit/10640dfff29bff48cc339c31c0fe98ab5a5d2ff3) - **feat:** add `sspmv`, `ssymv`, `ssyr`, `ssyr2`, and `strmv` to namespace _(by Athan Reines)_
- [`1457b6c`](https://github.com/stdlib-js/stdlib/commit/1457b6c9c2107f5888436df9f0897a22ad39c16a) - **feat:** add `sgemv`, `srot`, and `srotm` to namespace _(by Athan Reines)_
- [`4c3c742`](https://github.com/stdlib-js/stdlib/commit/4c3c7423c16b928960bcd21a5bb13669c02118ba) - **feat:** add `scasum` and `scnrm2` to namespace _(by Athan Reines)_
- [`ed6504f`](https://github.com/stdlib-js/stdlib/commit/ed6504f204b1b4b531977b93e49c24238aee8715) - **feat:** add `dtrmv` and `dznrm2` to namespace _(by Athan Reines)_
- [`38b338d`](https://github.com/stdlib-js/stdlib/commit/38b338d6d08bfe3e523ba02bf977430d320cbf03) - **feat:** add `dspmv`, `dsymv`, `dsyr`, and `dsyr2` to namespace _(by Athan Reines)_
- [`d039a63`](https://github.com/stdlib-js/stdlib/commit/d039a63eabd3956155b01fbe11c5e89e94930c2a) - **feat:** add `csrot`, `drot` and `drotm` to namespace _(by Athan Reines)_
- [`66d501a`](https://github.com/stdlib-js/stdlib/commit/66d501a60b22b7cd23cf7e79f768027ad1d8c6e5) - **feat:** add `caxpy` to namespace _(by Athan Reines)_
- [`aabe731`](https://github.com/stdlib-js/stdlib/commit/aabe7310272e138b7ae69a9297832aa7fcb21ef1) - **fix:** update variable name and define `status` type _(by Athan Reines)_
- [`43439d0`](https://github.com/stdlib-js/stdlib/commit/43439d0098ad812e3276a13ecaaf41f55c501680) - **feat:** add `blas/base/dsyr` [(#2659)](https://github.com/stdlib-js/stdlib/pull/2659) _(by Aman Bhansali, Athan Reines)_
- [`b3a0bd1`](https://github.com/stdlib-js/stdlib/commit/b3a0bd1a3e9bcdde3af048c7d6b6cfcd3765138f) - **docs:** fix example order _(by Athan Reines)_
Expand Down
207 changes: 207 additions & 0 deletions base/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,15 @@ var blas = {};
*/
setReadOnly( blas, 'assert', require( './../../base/assert' ) );

/**
* @name caxpy
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/caxpy}
*/
setReadOnly( blas, 'caxpy', require( './../../base/caxpy' ) );

/**
* @name ccopy
* @memberof blas
Expand All @@ -63,6 +72,15 @@ setReadOnly( blas, 'ccopy', require( './../../base/ccopy' ) );
*/
setReadOnly( blas, 'cscal', require( './../../base/cscal' ) );

/**
* @name csrot
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/csrot}
*/
setReadOnly( blas, 'csrot', require( './../../base/csrot' ) );

/**
* @name cswap
* @memberof blas
Expand Down Expand Up @@ -171,6 +189,15 @@ setReadOnly( blas, 'diagonalTypes', require( './../../base/diagonal-types' ) );
*/
setReadOnly( blas, 'dnrm2', require( './../../base/dnrm2' ) );

/**
* @name drot
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/drot}
*/
setReadOnly( blas, 'drot', require( './../../base/drot' ) );

/**
* @name drotg
* @memberof blas
Expand All @@ -180,6 +207,15 @@ setReadOnly( blas, 'dnrm2', require( './../../base/dnrm2' ) );
*/
setReadOnly( blas, 'drotg', require( './../../base/drotg' ) );

/**
* @name drotm
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/drotm}
*/
setReadOnly( blas, 'drotm', require( './../../base/drotm' ) );

/**
* @name dscal
* @memberof blas
Expand All @@ -198,6 +234,15 @@ setReadOnly( blas, 'dscal', require( './../../base/dscal' ) );
*/
setReadOnly( blas, 'dsdot', require( './../../base/dsdot' ) );

/**
* @name dspmv
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/dspmv}
*/
setReadOnly( blas, 'dspmv', require( './../../base/dspmv' ) );

/**
* @name dswap
* @memberof blas
Expand All @@ -207,6 +252,51 @@ setReadOnly( blas, 'dsdot', require( './../../base/dsdot' ) );
*/
setReadOnly( blas, 'dswap', require( './../../base/dswap' ) );

/**
* @name dsymv
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/dsymv}
*/
setReadOnly( blas, 'dsymv', require( './../../base/dsymv' ) );

/**
* @name dsyr
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/dsyr}
*/
setReadOnly( blas, 'dsyr', require( './../../base/dsyr' ) );

/**
* @name dsyr2
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/dsyr2}
*/
setReadOnly( blas, 'dsyr2', require( './../../base/dsyr2' ) );

/**
* @name dtrmv
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/dtrmv}
*/
setReadOnly( blas, 'dtrmv', require( './../../base/dtrmv' ) );

/**
* @name dznrm2
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/dznrm2}
*/
setReadOnly( blas, 'dznrm2', require( './../../base/dznrm2' ) );

/**
* @name gasum
* @memberof blas
Expand Down Expand Up @@ -450,6 +540,24 @@ setReadOnly( blas, 'saxpy', require( './../../base/saxpy' ) );
*/
setReadOnly( blas, 'scabs1', require( './../../base/scabs1' ) );

/**
* @name scasum
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/scasum}
*/
setReadOnly( blas, 'scasum', require( './../../base/scasum' ) );

/**
* @name scnrm2
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/scnrm2}
*/
setReadOnly( blas, 'scnrm2', require( './../../base/scnrm2' ) );

/**
* @name scopy
* @memberof blas
Expand Down Expand Up @@ -477,6 +585,15 @@ setReadOnly( blas, 'sdot', require( './../../base/sdot' ) );
*/
setReadOnly( blas, 'sdsdot', require( './../../base/sdsdot' ) );

/**
* @name sgemv
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/sgemv}
*/
setReadOnly( blas, 'sgemv', require( './../../base/sgemv' ) );

/**
* @name snrm2
* @memberof blas
Expand All @@ -486,6 +603,15 @@ setReadOnly( blas, 'sdsdot', require( './../../base/sdsdot' ) );
*/
setReadOnly( blas, 'snrm2', require( './../../base/snrm2' ) );

/**
* @name srot
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/srot}
*/
setReadOnly( blas, 'srot', require( './../../base/srot' ) );

/**
* @name srotg
* @memberof blas
Expand All @@ -495,6 +621,15 @@ setReadOnly( blas, 'snrm2', require( './../../base/snrm2' ) );
*/
setReadOnly( blas, 'srotg', require( './../../base/srotg' ) );

/**
* @name srotm
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/srotm}
*/
setReadOnly( blas, 'srotm', require( './../../base/srotm' ) );

/**
* @name sscal
* @memberof blas
Expand All @@ -504,6 +639,15 @@ setReadOnly( blas, 'srotg', require( './../../base/srotg' ) );
*/
setReadOnly( blas, 'sscal', require( './../../base/sscal' ) );

/**
* @name sspmv
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/sspmv}
*/
setReadOnly( blas, 'sspmv', require( './../../base/sspmv' ) );

/**
* @name sswap
* @memberof blas
Expand All @@ -513,6 +657,42 @@ setReadOnly( blas, 'sscal', require( './../../base/sscal' ) );
*/
setReadOnly( blas, 'sswap', require( './../../base/sswap' ) );

/**
* @name ssymv
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/ssymv}
*/
setReadOnly( blas, 'ssymv', require( './../../base/ssymv' ) );

/**
* @name ssyr
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/ssyr}
*/
setReadOnly( blas, 'ssyr', require( './../../base/ssyr' ) );

/**
* @name ssyr2
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/ssyr2}
*/
setReadOnly( blas, 'ssyr2', require( './../../base/ssyr2' ) );

/**
* @name strmv
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/strmv}
*/
setReadOnly( blas, 'strmv', require( './../../base/strmv' ) );

/**
* @name transposeOperationEnum2Str
* @memberof blas
Expand Down Expand Up @@ -558,6 +738,15 @@ setReadOnly( blas, 'transposeOperationStr2Enum', require( './../../base/transpos
*/
setReadOnly( blas, 'transposeOperations', require( './../../base/transpose-operations' ) );

/**
* @name zaxpy
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/zaxpy}
*/
setReadOnly( blas, 'zaxpy', require( './../../base/zaxpy' ) );

/**
* @name zcopy
* @memberof blas
Expand All @@ -567,6 +756,24 @@ setReadOnly( blas, 'transposeOperations', require( './../../base/transpose-opera
*/
setReadOnly( blas, 'zcopy', require( './../../base/zcopy' ) );

/**
* @name zdrot
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/zdrot}
*/
setReadOnly( blas, 'zdrot', require( './../../base/zdrot' ) );

/**
* @name zscal
* @memberof blas
* @readonly
* @type {Function}
* @see {@link module:@stdlib/blas/base/zscal}
*/
setReadOnly( blas, 'zscal', require( './../../base/zscal' ) );

/**
* @name zswap
* @memberof blas
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,10 @@
"@stdlib/array": "github:stdlib-js/array#main",
"@stdlib/assert": "github:stdlib-js/assert#main",
"@stdlib/complex": "github:stdlib-js/complex#main",
"@stdlib/constants": "github:stdlib-js/constants#main",
"@stdlib/math": "github:stdlib-js/math#main",
"@stdlib/napi": "github:stdlib-js/napi#main",
"@stdlib/ndarray": "github:stdlib-js/ndarray#main",
"@stdlib/number": "github:stdlib-js/number#main",
"@stdlib/strided": "github:stdlib-js/strided#main",
"@stdlib/string": "github:stdlib-js/string#main",
Expand All @@ -50,8 +52,6 @@
"devDependencies": {
"@stdlib/bench": "github:stdlib-js/bench#main",
"@stdlib/console": "github:stdlib-js/console#main",
"@stdlib/constants": "github:stdlib-js/constants#main",
"@stdlib/ndarray": "github:stdlib-js/ndarray#main",
"@stdlib/random": "github:stdlib-js/random#main",
"proxyquire": "^2.0.0",
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
Expand Down

0 comments on commit 9347d75

Please sign in to comment.