Skip to content

Commit 223666d

Browse files
committed
chore: clean-up
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: passed - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed ---
1 parent 8019f5c commit 223666d

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

lib/node_modules/@stdlib/blas/ext/base/drssbl/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ interface Routine {
6868
}
6969

7070
/**
71-
* Compute the residual sum of squares of two double-precision floating-point strided arrays using Blue's algorithm.
71+
* Computes the residual sum of squares of two double-precision floating-point strided arrays using Blue's algorithm.
7272
*
7373
* @param N - number of indexed elements
7474
* @param x - first input array

lib/node_modules/@stdlib/blas/ext/base/drssbl/examples/c/example.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ int main( void ) {
3131
const int strideX = 1;
3232
const int strideY = 1;
3333

34-
// Compute the square root of the residual sum of squares of `x` and `y`:
34+
// Compute the residual sum of squares of `x` and `y`:
3535
double d = stdlib_strided_drssbl( N, x, strideX, y, strideY );
3636

3737
// Print the result:
@@ -41,7 +41,7 @@ int main( void ) {
4141
const int offsetX = 1;
4242
const int offsetY = 1;
4343

44-
// Compute the square root of the residual sum of squares of `x` and `y` with offsets:
44+
// Compute the residual sum of squares of `x` and `y` with offsets:
4545
d = stdlib_strided_drssbl_ndarray( N, x, strideX, offsetX, y, strideY, offsetY );
4646

4747
// Print the result:

lib/node_modules/@stdlib/blas/ext/base/drssbl/include/stdlib/blas/ext/base/drssbl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ extern "C" {
3131
/**
3232
* Computes the residual sum of squares of two double-precision floating-point strided arrays using Blue's algorithm.
3333
*/
34-
double API_SUFFIX( stdlib_strided_drssbl )( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const double *Y, const CBLAS_INT strideY );
34+
double API_SUFFIX(stdlib_strided_drssbl)( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const double *Y, const CBLAS_INT strideY );
3535

3636
/**
3737
* Computes the residual sum of squares of two double-precision floating-point strided arrays using Blue's algorithm and alternative indexing semantics.
3838
*/
39-
double API_SUFFIX( stdlib_strided_drssbl_ndarray )( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, const double *Y, const CBLAS_INT strideY, const CBLAS_INT offsetY );
39+
double API_SUFFIX(stdlib_strided_drssbl_ndarray)( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, const double *Y, const CBLAS_INT strideY, const CBLAS_INT offsetY );
4040

4141
#ifdef __cplusplus
4242
}

lib/node_modules/@stdlib/blas/ext/base/drssbl/src/addon.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ static napi_value addon( napi_env env, napi_callback_info info ) {
3939
STDLIB_NAPI_ARGV_INT64( env, strideY, argv, 4 );
4040
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, X, N, strideX, argv, 1 );
4141
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, Y, N, strideY, argv, 3 );
42-
STDLIB_NAPI_CREATE_DOUBLE( env, API_SUFFIX( stdlib_strided_drssbl )( N, X, strideX, Y, strideY ), v );
42+
STDLIB_NAPI_CREATE_DOUBLE( env, API_SUFFIX(stdlib_strided_drssbl)( N, X, strideX, Y, strideY ), v );
4343
return v;
4444
}
4545

@@ -59,7 +59,7 @@ static napi_value addon_method( napi_env env, napi_callback_info info ) {
5959
STDLIB_NAPI_ARGV_INT64( env, offsetY, argv, 6 );
6060
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, X, N, strideX, argv, 1 );
6161
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, Y, N, strideY, argv, 4 );
62-
STDLIB_NAPI_CREATE_DOUBLE( env, API_SUFFIX( stdlib_strided_drssbl_ndarray )( N, X, strideX, offsetX, Y, strideY, offsetY ), v );
62+
STDLIB_NAPI_CREATE_DOUBLE( env, API_SUFFIX(stdlib_strided_drssbl_ndarray)( N, X, strideX, offsetX, Y, strideY, offsetY ), v );
6363
return v;
6464
}
6565

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ static const double TSML = 1.4916681462400413E-154;
4242
* @param strideY stride length of `Y`
4343
* @return output value
4444
*/
45-
double API_SUFFIX( stdlib_strided_drssbl )( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const double *Y, const CBLAS_INT strideY ) {
45+
double API_SUFFIX(stdlib_strided_drssbl)( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const double *Y, const CBLAS_INT strideY ) {
4646
const CBLAS_INT ox = stdlib_strided_stride2offset( N, strideX );
4747
const CBLAS_INT oy = stdlib_strided_stride2offset( N, strideY );
48-
return API_SUFFIX( stdlib_strided_drssbl_ndarray )( N, X, strideX, ox, Y, strideY, oy );
48+
return API_SUFFIX(stdlib_strided_drssbl_ndarray)( N, X, strideX, ox, Y, strideY, oy );
4949
}
5050

5151
/**
@@ -60,7 +60,7 @@ double API_SUFFIX( stdlib_strided_drssbl )( const CBLAS_INT N, const double *X,
6060
* @param offsetY starting index for `Y`
6161
* @return output value
6262
*/
63-
double API_SUFFIX( stdlib_strided_drssbl_ndarray )( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, const double *Y, const CBLAS_INT strideY, const CBLAS_INT offsetY ) {
63+
double API_SUFFIX(stdlib_strided_drssbl_ndarray)( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, const double *Y, const CBLAS_INT strideY, const CBLAS_INT offsetY ) {
6464
bool notbig;
6565
double sumsq;
6666
double scale;

0 commit comments

Comments
 (0)