Skip to content

Commit b6474a0

Browse files
committed
docs: apply review suggestion
1 parent 05bdd2b commit b6474a0

File tree

1 file changed

+9
-0
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/dssumors/src

1 file changed

+9
-0
lines changed

lib/node_modules/@stdlib/blas/ext/base/dssumors/src/main.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ double API_SUFFIX(stdlib_strided_dssumors)( const CBLAS_INT N, const float *X, c
3333
return API_SUFFIX(stdlib_strided_dssumors_ndarray)( N, X, strideX, ox );
3434
}
3535

36+
/**
37+
* Computes the sum of single-precision floating-point strided array elements using ordinary recursive summation with extended accumulation and alternative indexing semantics and returning an extended precision result.
38+
*
39+
* @param N number of indexed elements
40+
* @param X input array
41+
* @param strideX stride length
42+
* @param offsetX starting index
43+
* @return output value
44+
*/
3645
double API_SUFFIX(stdlib_strided_dssumors_ndarray)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) {
3746
CBLAS_INT ix;
3847
CBLAS_INT m;

0 commit comments

Comments
 (0)