Skip to content

Commit a732173

Browse files
committed
chore: add array datatype
--- 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: passed - 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: na - task: lint_c_examples status: na - 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: na - task: lint_license_headers status: passed ---
1 parent 69a388f commit a732173

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@ interface Module extends ModuleWrapper {
148148
*
149149
* // Write vector values to module memory:
150150
* var x = new Float64Array( [ 1, 2, 3, NaN ] );
151-
*
152151
* mod.write( xptr, x );
153152
*
154153
* // Perform computation:
@@ -193,7 +192,6 @@ interface Module extends ModuleWrapper {
193192
*
194193
* // Write vector values to module memory:
195194
* var x = new Float64Array( [ 1, 2, 3, NaN ] );
196-
*
197195
* mod.write( xptr, x );
198196
*
199197
* // Perform computation:
@@ -278,7 +276,6 @@ interface Routine extends ModuleWrapper {
278276
*
279277
* // Write vector values to module memory:
280278
* var x = new Float64Array( [ 1, 2, 3, NaN ] );
281-
*
282279
* mod.write( xptr, x );
283280
*
284281
* // Perform computation:

lib/node_modules/@stdlib/blas/ext/base/wasm/dnansumkbn2/lib/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070
*
7171
* // Write vector values to module memory:
7272
* var x = new Float64Array( [ 1, 2, 3, NaN ] );
73-
*
7473
* mod.write( xptr, x );
7574
*
7675
* // Perform computation:

lib/node_modules/@stdlib/blas/ext/base/wasm/dnansumkbn2/lib/module.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ var wasmBinary = require( './binary.js' );
6767
* var xptr = 0;
6868
*
6969
* // Write vector values to module memory:
70-
* dnansumkbn2.write( xptr, [ 1, 2, 3, NaN ] );
70+
* var x = new Float64Array( [ 1, 2, 3, NaN ] );
71+
* dnansumkbn2.write( xptr, x );
7172
*
7273
* // Perform computation:
7374
* var sum = dnansumkbn2.main( N, xptr, 1 );
@@ -131,7 +132,8 @@ inherits( Module, WasmModule );
131132
* var xptr = 0;
132133
*
133134
* // Write vector values to module memory:
134-
* dnansumkbn2.write( xptr, [ 1, 2, 3, NaN ] );
135+
* var x = new Float64Array( [ 1, 2, 3, NaN ] );
136+
* dnansumkbn2.write( xptr, x );
135137
*
136138
* // Perform computation:
137139
* var sum = dnansumkbn2.main( N, xptr, 1 );
@@ -181,7 +183,8 @@ setReadOnly( Module.prototype, 'main', function dnansumkbn2( N, xptr, strideX )
181183
* var xptr = 0;
182184
*
183185
* // Write vector values to module memory:
184-
* dnansumkbn2.write( xptr, [ 1, 2, 3, NaN ] );
186+
* var x = new Float64Array( [ 1, 2, 3, NaN ] );
187+
* dnansumkbn2.write( xptr, x );
185188
*
186189
* // Perform computation:
187190
* var sum = dnansumkbn2.ndarray( N, xptr, 1, 0 );

0 commit comments

Comments
 (0)