Skip to content

Commit 0732605

Browse files
committed
test: add tests for mixed strides
--- 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: passed - 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: na - task: lint_license_headers status: passed ---
1 parent dd74f3f commit 0732605

32 files changed

+288
-167
lines changed

lib/node_modules/@stdlib/lapack/base/dlaset/test/fixtures/all_col_major.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
"alpha": 2.0,
2121
"beta": 3.0,
2222

23-
"out": [ 3.0, 2.0, 2.0, 2.0, 3.0, 2.0, 2.0, 2.0, 3.0 ],
24-
"out_mat": [
23+
"A_out": [ 3.0, 2.0, 2.0, 2.0, 3.0, 2.0, 2.0, 2.0, 3.0 ],
24+
"A_out_mat": [
2525
[ 3.0, 2.0, 2.0 ],
2626
[ 2.0, 3.0, 2.0 ],
2727
[ 2.0, 2.0, 3.0 ]

lib/node_modules/@stdlib/lapack/base/dlaset/test/fixtures/all_row_major.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
"alpha": 2.0,
2121
"beta": 3.0,
2222

23-
"out": [ 3.0, 2.0, 2.0, 2.0, 3.0, 2.0, 2.0, 2.0, 3.0 ],
24-
"out_mat": [
23+
"A_out": [ 3.0, 2.0, 2.0, 2.0, 3.0, 2.0, 2.0, 2.0, 3.0 ],
24+
"A_out_mat": [
2525
[ 3.0, 2.0, 2.0 ],
2626
[ 2.0, 3.0, 2.0 ],
2727
[ 2.0, 2.0, 3.0 ]

lib/node_modules/@stdlib/lapack/base/dlaset/test/fixtures/large_strides/all_col_major.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"LDA": 3,
4747
"alpha": 2,
4848
"beta": 3,
49-
"out": [
49+
"A_out": [
5050
3,
5151
9999,
5252
2,
@@ -66,7 +66,7 @@
6666
3,
6767
9999
6868
],
69-
"out_mat": [
69+
"A_out_mat": [
7070
[
7171
3,
7272
2,

lib/node_modules/@stdlib/lapack/base/dlaset/test/fixtures/large_strides/all_row_major.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"LDA": 3,
4747
"alpha": 2,
4848
"beta": 3,
49-
"out": [
49+
"A_out": [
5050
3,
5151
9999,
5252
2,
@@ -66,7 +66,7 @@
6666
3,
6767
9999
6868
],
69-
"out_mat": [
69+
"A_out_mat": [
7070
[
7171
3,
7272
2,

lib/node_modules/@stdlib/lapack/base/dlaset/test/fixtures/large_strides/lower_col_major.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"LDA": 3,
4747
"alpha": 2,
4848
"beta": 3,
49-
"out": [
49+
"A_out": [
5050
3,
5151
9999,
5252
2,
@@ -66,7 +66,7 @@
6666
3,
6767
9999
6868
],
69-
"out_mat": [
69+
"A_out_mat": [
7070
[
7171
3,
7272
2,

lib/node_modules/@stdlib/lapack/base/dlaset/test/fixtures/large_strides/lower_row_major.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"LDA": 3,
4747
"alpha": 2,
4848
"beta": 3,
49-
"out": [
49+
"A_out": [
5050
3,
5151
9999,
5252
2,
@@ -66,7 +66,7 @@
6666
3,
6767
9999
6868
],
69-
"out_mat": [
69+
"A_out_mat": [
7070
[
7171
3,
7272
2,

lib/node_modules/@stdlib/lapack/base/dlaset/test/fixtures/large_strides/upper_col_major.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"LDA": 3,
4747
"alpha": 2,
4848
"beta": 3,
49-
"out": [
49+
"A_out": [
5050
3,
5151
9999,
5252
4,
@@ -66,7 +66,7 @@
6666
3,
6767
9999
6868
],
69-
"out_mat": [
69+
"A_out_mat": [
7070
[
7171
3,
7272
2,

lib/node_modules/@stdlib/lapack/base/dlaset/test/fixtures/large_strides/upper_row_major.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"LDA": 3,
4747
"alpha": 2,
4848
"beta": 3,
49-
"out": [
49+
"A_out": [
5050
3,
5151
9999,
5252
2,
@@ -66,7 +66,7 @@
6666
3,
6767
9999
6868
],
69-
"out_mat": [
69+
"A_out_mat": [
7070
[
7171
3,
7272
2,

lib/node_modules/@stdlib/lapack/base/dlaset/test/fixtures/lower_col_major.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
"alpha": 2.0,
2121
"beta": 3.0,
2222

23-
"out": [ 3.0, 2.0, 2.0, 2.0, 3.0, 2.0, 3.0, 6.0, 3.0 ],
24-
"out_mat": [
23+
"A_out": [ 3.0, 2.0, 2.0, 2.0, 3.0, 2.0, 3.0, 6.0, 3.0 ],
24+
"A_out_mat": [
2525
[ 3.0, 2.0, 3.0 ],
2626
[ 2.0, 3.0, 6.0 ],
2727
[ 2.0, 2.0, 3.0 ]

lib/node_modules/@stdlib/lapack/base/dlaset/test/fixtures/lower_row_major.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
"alpha": 2.0,
2121
"beta": 3.0,
2222

23-
"out": [ 3.0, 2.0, 3.0, 2.0, 3.0, 6.0, 2.0, 2.0, 3.0 ],
24-
"out_mat": [
23+
"A_out": [ 3.0, 2.0, 3.0, 2.0, 3.0, 6.0, 2.0, 2.0, 3.0 ],
24+
"A_out_mat": [
2525
[ 3.0, 2.0, 3.0 ],
2626
[ 2.0, 3.0, 6.0 ],
2727
[ 2.0, 2.0, 3.0 ]

0 commit comments

Comments
 (0)