8000 feat: add `blas/base/ssymm` by ShabiShett07 · Pull Request #7385 · stdlib-js/stdlib · GitHub
[go: up one dir, main page]

Skip to content

feat: add blas/base/ssymm #7385

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 11 commits into
base: develop
Choose a base branch
from
Draft
Prev Previous commit
Next Next commit
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <139731143+ShabiShett07@users.noreply.github.com>
  • Loading branch information
ShabiShett07 authored Jun 18, 2025
commit 4113844f6240ad7286eb05f63555f6ce79b84fdd
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/base/ssymm/lib/ssymm.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ var base = require( './base.js' );
* @param {Float32Array} C - third matrix
* @param {PositiveInteger} LDC - stride of the first dimension of `C` (a.k.a., leading dimension of the matrix `C`)
* @throws {TypeError} first argument must be a valid order
* @throws {TypeError} second argument must be a valid transpose operation
* @throws {TypeError} third argument must be a valid transpose operation
* @throws {TypeError} second argument must be a valid side
* @throws {TypeError} third argument must specify whether the lower or upper triangular matrix is supplied.
* @throws {RangeError} fourth argument must be a nonnegative integer
* @throws {RangeError} fifth argument must be a nonnegative integer
* @throws {RangeError} eighth argument must be greater than or equal to max(1,M) when `A` is on the left of `B` and max(1,N) otherwise
Expand Down
Loading
0