Skip to content

refactor: update add-on, examples, benchmarks, and docs #798

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

Merged
merged 13 commits into from
Mar 1, 2023
Prev Previous commit
Apply suggestions from code review
  • Loading branch information
kgryte authored Mar 1, 2023
commit ef4211e3dfba483135ce3c71aad0aeda58dc7611
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/base/sdot/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
Returns
-------
dot: float
Output array.
The dot product.

Examples
--------
Expand Down Expand Up @@ -88,7 +88,7 @@
Returns
-------
dot: float
Output array.
The dot product.

Examples
--------
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/base/sdot/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ interface Routine {
* @param y - second input array
* @param strideY - `y` stride length
* @param offsetY - starting index for `y`
* @returns output array
* @returns dot product
*
* @example
* var Float32Array = require( `@stdlib/array/float32` );
Expand All @@ -75,7 +75,7 @@ interface Routine {
* @param strideX - `x` stride length
* @param y - second input array
* @param strideY - `y` stride length
* @returns output array
* @returns dot product
*
* @example
* var Float32Array = require( `@stdlib/array/float32` );
Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/blas/base/sdot/src/addon.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
#include "stdlib/napi/argv_strided_float32array.h"
#include <node_api.h>


/**
* Receives JavaScript callback invocation data.
*
Expand Down