Skip to content

Commit f1b0ab7

Browse files
committed
fix: lint errors
--- 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: passed - task: lint_repl_help status: passed - 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: 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: na - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 326a235 commit f1b0ab7

File tree

4 files changed

+77
-78
lines changed

4 files changed

+77
-78
lines changed

lib/node_modules/@stdlib/blas/base/sgbmv/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
Row-major (C-style) or column-major (Fortran-style) order.
1919

2020
trans: string
21-
Specifies whether `A` should be transposed, conjugate-transposed,
21+
Specifies whether `A` should be transposed, conjugate-transposed,
2222
or not transposed.
2323

2424
M: integer

lib/node_modules/@stdlib/blas/base/sgbmv/docs/types/test.ts

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ import sgbmv = require( './index' );
114114
{
115115
const x = new Float32Array( 10 );
116116
const y = new Float32Array( 10 );
117-
const A = new Float32Array( 20 );
117+
const A = new Float32Array( 20 );
118118

119119
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, '10', 1.0, A, 10, x, 1, 1.0, y, 1 ); // $ExpectError
120120
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, true, 1.0, A, 10, x, 1, 1.0, y, 1 ); // $ExpectError
@@ -130,7 +130,7 @@ import sgbmv = require( './index' );
130130
{
131131
const x = new Float32Array( 10 );
132132
const y = new Float32Array( 10 );
133-
const A = new Float32Array( 20 );
133+
const A = new Float32Array( 20 );
134134

135135
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, 1, '10', A, 10, x, 1, 1.0, y, 1 ); // $ExpectError
136136
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, 1, true, A, 10, x, 1, 1.0, y, 1 ); // $ExpectError
@@ -147,7 +147,7 @@ import sgbmv = require( './index' );
147147
const x = new Float32Array( 10 );
148148
const y = new Float32Array( 10 );
149149

150-
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, 1, 1.0, 10, 10, x, 1, 1.0, y, 1 ); // $ExpectError
150+
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, 1, 1.0, 10, 10, x, 1, 1.0, y, 1 ); // $ExpectError
151151
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, 1, 1.0, '10', 10, x, 1, 1.0, y, 1 ); // $ExpectError
152152
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, 1, 1.0, true, 10, x, 1, 1.0, y, 1 ); // $ExpectError
153153
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, 1, 1.0, false, 10, x, 1, 1.0, y, 1 ); // $ExpectError
@@ -266,8 +266,8 @@ import sgbmv = require( './index' );
266266
sgbmv( 'row-major', 'no-transpose', 10 ); // $ExpectError
267267
sgbmv( 'row-major', 'no-transpose', 10, 10 ); // $ExpectError
268268
sgbmv( 'row-major', 'no-transpose', 10, 10, 1 ); // $ExpectError
269-
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, 1 ); // $ExpectError
270-
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, 1, 1.0 ); // $ExpectError
269+
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, 1 ); // $ExpectError
270+
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, 1, 1.0 ); // $ExpectError
271271
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, 1, 1.0, A ); // $ExpectError
272272
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, 1, 1.0, A, 10 ); // $ExpectError
273273
sgbmv( 'row-major', 'no-transpose', 10, 10, 1, 1, 1.0, A, 10, x ); // $ExpectError
@@ -354,7 +354,7 @@ import sgbmv = require( './index' );
354354
{
355355
const x = new Float32Array( 10 );
356356
const y = new Float32Array( 10 );
357-
const A = new Float32Array( 20 );
357+
const A = new Float32Array( 20 );
358358

359359
sgbmv.ndarray( 'no-transpose', 10, 10, 1, '10', 1.0, A, 10, 1, 0, x, 1, 0, 1.0, y, 1, 0 ); // $ExpectError
360360
sgbmv.ndarray( 'no-transpose', 10, 10, 1, true, 1.0, A, 10, 1, 0, x, 1, 0, 1.0, y, 1, 0 ); // $ExpectError
@@ -370,7 +370,7 @@ import sgbmv = require( './index' );
370370
{
371371
const x = new Float32Array( 10 );
372372
const y = new Float32Array( 10 );
373-
const A = new Float32Array( 20 );
373+
const A = new Float32Array( 20 );
374374

375375
sgbmv.ndarray( 'no-transpose', 10, 10, 1, 1, '10', A, 10, 1, 0, x, 1, 0, 1.0, y, 1, 0 ); // $ExpectError
376376
sgbmv.ndarray( 'no-transpose', 10, 10, 1, 1, true, A, 10, 1, 0, x, 1, 0, 1.0, y, 1, 0 ); // $ExpectError
@@ -386,7 +386,6 @@ import sgbmv = require( './index' );
386386
{
387387
const x = new Float32Array( 10 );
388388
const y = new Float32Array( 10 );
389-
const A = new Float32Array( 20 );
390389

391390
sgbmv.ndarray( 'no-transpose', 10, 10, 1, 1, 1.0, '10', 10, 1, 0, x, 1, 0, 1.0, y, 1, 0 ); // $ExpectError
392391
sgbmv.ndarray( 'no-transpose', 10, 10, 1, 1, 1.0, true, 10, 1, 0, x, 1, 0, 1.0, y, 1, 0 ); // $ExpectError
@@ -569,8 +568,8 @@ import sgbmv = require( './index' );
569568
sgbmv.ndarray( 'no-transpose', 10 ); // $ExpectError
570569
sgbmv.ndarray( 'no-transpose', 10, 10 ); // $ExpectError
571570
sgbmv.ndarray( 'no-transpose', 10, 10, 1.0 ); // $ExpectError
572-
sgbmv.ndarray( 'no-transpose', 10, 10, 1, 1.0 ); // $ExpectError
573-
sgbmv.ndarray( 'no-transpose', 10, 10, 1, 1, 1.0 ); // $ExpectError
571+
sgbmv.ndarray( 'no-transpose', 10, 10, 1, 1.0 ); // $ExpectError
572+
sgbmv.ndarray( 'no-transpose', 10, 10, 1, 1, 1.0 ); // $ExpectError
574573
sgbmv.ndarray( 'no-transpose', 10, 10, 1, 1, 1.0, A ); // $ExpectError
575574
sgbmv.ndarray( 'no-transpose', 10, 10, 1, 1, 1.0, A, 10 ); // $ExpectError
576575
sgbmv.ndarray( 'no-transpose', 10, 10, 1, 1, 1.0, A, 10, 1 ); // $ExpectError
Lines changed: 66 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,69 @@
11
{
2-
"name": "@stdlib/blas/base/sgbmv",
3-
"version": "0.0.0",
4-
"description": "Perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`.",
5-
"license": "Apache-2.0",
6-
"author": {
2+
"name": "@stdlib/blas/base/sgbmv",
3+
"version": "0.0.0",
4+
"description": "Perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`.",
5+
"license": "Apache-2.0",
6+
"author": {
7+
"name": "The Stdlib Authors",
8+
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
9+
},
10+
"contributors": [
11+
{
712
"name": "The Stdlib Authors",
813
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
9-
},
10-
"contributors": [
11-
{
12-
"name": "The Stdlib Authors",
13-
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
14-
}
15-
],
16-
"main": "./lib",
17-
"directories": {
18-
"benchmark": "./benchmark",
19-
"doc": "./docs",
20-
"example": "./examples",
21-
"lib": "./lib",
22-
"test": "./test"
23-
},
24-
"types": "./docs/types",
25-
"scripts": {},
26-
"homepage": "https://github.com/stdlib-js/stdlib",
27-
"repository": {
28-
"type": "git",
29-
"url": "git://github.com/stdlib-js/stdlib.git"
30-
},
31-
"bugs": {
32-
"url": "https://github.com/stdlib-js/stdlib/issues"
33-
},
34-
"dependencies": {},
35-
"devDependencies": {},
36-
"engines": {
37-
"node": ">=0.10.0",
38-
"npm": ">2.7.0"
39-
},
40-
"os": [
41-
"aix",
42-
"darwin",
43-
"freebsd",
44-
"linux",
45-
"macos",
46-
"openbsd",
47-
"sunos",
48-
"win32",
49-
"windows"
50-
],
51-
"keywords": [
52-
"stdlib",
53-
"stdmath",
54-
"mathematics",
55-
"math",
56-
"blas",
57-
"level 2",
58-
"sgbmv",
59-
"linear",
60-
"algebra",
61-
"subroutines",
62-
"array",
63-
"ndarray",
64-
"float32",
65-
"float",
66-
"float32array",
67-
"banded"
68-
]
69-
}
14+
}
15+
],
16+
"main": "./lib",
17+
"directories": {
18+
"benchmark": "./benchmark",
19+
"doc": "./docs",
20+
"example": "./examples",
21+
"lib": "./lib",
22+
"test": "./test"
23+
},
24+
"types": "./docs/types",
25+
"scripts": {},
26+
"homepage": "https://github.com/stdlib-js/stdlib",
27+
"repository": {
28+
"type": "git",
29+
"url": "git://github.com/stdlib-js/stdlib.git"
30+
},
31+
"bugs": {
32+
"url": "https://github.com/stdlib-js/stdlib/issues"
33+
},
34+
"dependencies": {},
35+
"devDependencies": {},
36+
"engines": {
37+
"node": ">=0.10.0",
38+
"npm": ">2.7.0"
39+
},
40+
"os": [
41+
"aix",
42+
"darwin",
43+
"freebsd",
44+
"linux",
45+
"macos",
46+
"openbsd",
47+
"sunos",
48+
"win32",
49+
"windows"
50+
],
51+
"keywords": [
52+
"stdlib",
53+
"stdmath",
54+
"mathematics",
55+
"math",
56+
"blas",
57+
"level 2",
58+
"sgbmv",
59+
"linear",
60+
"algebra",
61+
"subroutines",
62+
"array",
63+
"ndarray",
64+
"float32",
65+
"float",
66+
"float32array",
67+
"banded"
68+
]
69+
}

lib/node_modules/@stdlib/blas/base/sgbmv/test/fixtures/row_major_complex_access_pattern.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
"x": [ 3.0, 2.0, 1.0 ],
1818
"y": [ 3.0, 2.0, 1.0 ],
1919
"y_out": [ 18.0, 14.0, 3.0 ]
20-
}
20+
}

0 commit comments

Comments
 (0)