Skip to content

Commit

Permalink
fix: add missing parameters and update description
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Jul 31, 2024
1 parent 170b5d6 commit b5de107
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ interface Routine {
* ssyr2.ndarray( 'upper', 3, 1.0, x, 1, 0, y, 1, 0, A, 3, 1, 0 );
* // A => <Float32Array>[ 3.0, 6.0, 9.0, 0.0, 9.0, 14.0, 0.0, 0.0, 19.0 ]
*/
ndarray( uplo: MatrixTriangle, N: number, alpha: number, x: Float32Array, strideX: number, offsetX: number, A: Float32Array, strideA1: number, strideA2: number, offsetA: number ): Float32Array;
ndarray( uplo: MatrixTriangle, N: number, alpha: number, x: Float32Array, strideX: number, offsetX: number, y: Float32Array, strideY: number, offsetY: number, A: Float32Array, strideA1: number, strideA2: number, offsetA: number ): Float32Array;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/ssyr2/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var base = require( './base.js' );
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` should be referenced
* @param {NonNegativeInteger} N - number of elements along each dimension of `A`
* @param {number} alpha - scalar
* @param {Float32Array} x - input vector
* @param {Float32Array} x - first input vector
* @param {integer} strideX - `x` stride length
* @param {NonNegativeInteger} offsetX - starting index for `x`
* @param {Float32Array} y - second input vector
Expand Down

1 comment on commit b5de107

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
blas/base/ssyr2 $\color{red}427/429$
$\color{green}+99.53\%$
$\color{red}50/53$
$\color{green}+94.34\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{red}427/429$
$\color{green}+99.53\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.