Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/base/ndarray/dsdot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.

# dsdot

> Calculate the dot product of two one-dimensional single-precision floating-point ndarrays.
> Calculate the dot product of two one-dimensional single-precision floating-point ndarrays with double-precision accumulation.

<section class="intro">

Expand Down Expand Up @@ -53,7 +53,7 @@ var dsdot = require( '@stdlib/blas/base/ndarray/dsdot' );

#### dsdot( arrays )

Computes the dot product of two one-dimensional single-precision floating-point ndarrays.
Computes the dot product of two one-dimensional single-precision floating-point ndarrays with double-precision accumulation.

```javascript
var Float32Vector = require( '@stdlib/ndarray/vector/float32' );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
Computes the dot product of two one-dimensional single-precision floating-
point ndarrays with extended accumulation.

If provided an empty input ndarray, the function returns `0.0`.
If provided an empty input ndarray, the function returns the scalar
constant.

Parameters
----------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ interface Routine {
* @param alpha - scalar constant
* @param x - input array
* @param strideX - stride length
* @returns input array
* @returns `x`
*
* @example
* var Float64Array = require( '@stdlib/array/float64' );
Expand All @@ -49,7 +49,7 @@ interface Routine {
* @param x - input array
* @param strideX - stride length
* @param offsetX - starting index
* @returns input array
* @returns `x`
*
* @example
* var Float64Array = require( '@stdlib/array/float64' );
Expand All @@ -69,7 +69,7 @@ interface Routine {
* @param alpha - scalar constant
* @param x - input array
* @param strideX - stride length
* @returns input array
* @returns `x`
*
* @example
* var Float64Array = require( '@stdlib/array/float64' );
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/ext/base/dxsa/lib/dxsa.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

'use strict';

// VARIABLES //
// MODULES //

var stride2offset = require( '@stdlib/strided/base/stride2offset' );
var ndarray = require( './ndarray.js' );
Expand Down
Loading