Skip to content

Commit 84af975

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: passed - 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: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: passed - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 4f9ada3 commit 84af975

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

lib/node_modules/@stdlib/blas/ext/base/csumkbn/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ Computes the sum of single-precision complex floating-point strided array elemen
181181
#include "stdlib/complex/float32/ctor.h"
182182

183183
const stdlib_complex64_t x[] = {
184-
stdlib_complex64( 1.0, 2.0 ),
185-
stdlib_complex64( 3.0, 4.0 )
184+
stdlib_complex64( 1.0f, 2.0f ),
185+
stdlib_complex64( 3.0f, 4.0f )
186186
};
187187

188188
stdlib_complex64_t v = stdlib_strided_csumkbn( 2, x, 1 );
@@ -206,8 +206,8 @@ Computes the sum of single-precision complex floating-point strided array elemen
206206
#include "stdlib/complex/float32/ctor.h"
207207
208208
const stdlib_complex64_t x[] = {
209-
stdlib_complex64( 1.0, 2.0 ),
210-
stdlib_complex64( 3.0, 4.0 )
209+
stdlib_complex64( 1.0f, 2.0f ),
210+
stdlib_complex64( 3.0f, 4.0f )
211211
};
212212
213213
stdlib_complex64_t v = stdlib_strided_csumkbn_ndarray( 2, x, 1, 0 );

lib/node_modules/@stdlib/blas/ext/base/csumkbn/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var uniform = require( '@stdlib/random/array/uniform' );
2626
var Complex64Array = require( '@stdlib/array/complex64' );
2727
var realf = require( '@stdlib/complex/float32/real' );
2828
var imagf = require( '@stdlib/complex/float32/imag' );
29-
var isnanf = require( '@stdlib/math/base/assert/is-nan' );
29+
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
3030
var pow = require( '@stdlib/math/base/special/pow' );
3131
var tryRequire = require( '@stdlib/utils/try-require' );
3232
var pkg = require( './../package.json' ).name;

lib/node_modules/@stdlib/blas/ext/base/csumkbn/benchmark/c/benchmark.length.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ static double benchmark1( int iterations, int len ) {
102102
double elapsed;
103103
float *x;
104104
double t;
105-
double r;
105+
float r;
106106
int i;
107107

108108
x = (float *) malloc( len * 2 * sizeof( float ) );
@@ -143,7 +143,7 @@ static double benchmark2( int iterations, int len ) {
143143
double elapsed;
144144
float *x;
145145
double t;
146-
double r;
146+
float r;
147147
int i;
148148

149149
x = (float *) malloc( len * 2 * sizeof( float ) );

0 commit comments

Comments
 (0)