Skip to content

Commit d3e5a48

Browse files
Shabareesh ShettyShabareesh Shetty
authored andcommitted
test: update test description
--- 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 f6e13a0 commit d3e5a48

File tree

2 files changed

+34
-34
lines changed

2 files changed

+34
-34
lines changed

lib/node_modules/@stdlib/blas/base/dsbmv/test/test.dsbmv.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ tape( 'the function throws an error if provided an invalid twelfth argument', fu
207207
}
208208
});
209209

210-
tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric band matrix, with `K` super-diagonals (row-major, lower)', function test( t ) {
210+
tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` (row-major, lower)', function test( t ) {
211211
var expected;
212212
var out;
213213
var a;
@@ -227,7 +227,7 @@ tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` where `
227227
t.end();
228228
});
229229

230-
tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric band matrix, with `K` super-diagonals (column-major, lower)', function test( t ) {
230+
tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` (column-major, lower)', function test( t ) {
231231
var expected;
232232
var out;
233233
var a;
@@ -247,7 +247,7 @@ tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` where `
247247
t.end();
248248
});
249249

250-
tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric band matrix, with `K` super-diagonals (row-major, upper)', function test( t ) {
250+
tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` (row-major, upper)', function test( t ) {
251251
var expected;
252252
var out;
253253
var a;
@@ -267,7 +267,7 @@ tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` where `
267267
t.end();
268268
});
269269

270-
tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric band matrix, with `K` super-diagonals (column-major, upper)', function test( t ) {
270+
tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` (column-major, upper)', function test( t ) {
271271
var expected;
272272
var out;
273273
var a;
@@ -431,7 +431,7 @@ tape( 'when `α` is zero, the function scales the second input vector (column-ma
431431
t.end();
432432
});
433433

434-
tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric band matrix, with `K` super-diagonals (row-major, sx=1, sy=1)', function test( t ) {
434+
tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` (row-major, sx=2, sy=2)', function test( t ) {
435435
var expected;
436436
var out;
437437
var a;
@@ -451,7 +451,7 @@ tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` where `
451451
t.end();
452452
});
453453

454-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` banded symmetric matrix (column-major, sx=1, sy=1)', function test( t ) {
454+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=2, sy=2)', function test( t ) {
455455
var expected;
456456
var out;
457457
var a;
@@ -471,7 +471,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
471471
t.end();
472472
});
473473

474-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` banded symmetric matrix (row-major, sx=-1, sy=1)', function test( t ) {
474+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=-1, sy=2)', function test( t ) {
475475
var expected;
476476
var out;
477477
var a;
@@ -491,7 +491,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
491491
t.end();
492492
});
493493

494-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` banded symmetric matrix (column-major, sx=-1, sy=1)', function test( t ) {
494+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=-1, sy=2)', function test( t ) {
495495
var expected;
496496
var out;
497497
var a;
@@ -511,7 +511,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
511511
t.end();
512512
});
513513

514-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` banded symmetric matrix (row-major, sx=1, sy=-1)', function test( t ) {
514+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=2, sy=-1)', function test( t ) {
515515
var expected;
516516
var out;
517517
var a;
@@ -531,7 +531,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
531531
t.end();
532532
});
533533

534-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` banded symmetric matrix (column-major, sx=1, sy=-1)', function test( t ) {
534+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=2, sy=-1)', function test( t ) {
535535
var expected;
536536
var out;
537537
var a;
@@ -551,7 +551,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
551551
t.end();
552552
});
553553

554-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` banded symmetric matrix (row-major, sx=-1, sy=-1)', function test( t ) {
554+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=-1, sy=-1)', function test( t ) {
555555
var expected;
556556
var out;
557557
var a;
@@ -571,7 +571,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
571571
t.end();
572572
});
573573

574-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` banded symmetric matrix (column-major, sx=-1, sy=-1)', function test( t ) {
574+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=-1, sy=-1)', function test( t ) {
575575
var expected;
576576
var out;
577577
var a;

lib/node_modules/@stdlib/blas/base/dsbmv/test/test.ndarray.js

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ tape( 'the function throws an error if provided an invalid fourteenth argument',
216216
}
217217
});
218218

219-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, lower)', function test( t ) {
219+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, lower)', function test( t ) {
220220
var expected;
221221
var out;
222222
var a;
@@ -236,7 +236,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
236236
t.end();
237237
});
238238

239-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, lower)', function test( t ) {
239+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, lower)', function test( t ) {
240240
var expected;
241241
var out;
242242
var a;
@@ -256,7 +256,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
256256
t.end();
257257
});
258258

259-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, upper)', function test( t ) {
259+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, upper)', function test( t ) {
260260
var expected;
261261
var out;
262262
var a;
@@ -276,7 +276,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
276276
t.end();
277277
});
278278

279-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, upper)', function test( t ) {
279+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, upper)', function test( t ) {
280280
var expected;
281281
var out;
282282
var a;
@@ -440,7 +440,7 @@ tape( 'when `α` is zero, the function scales the second input vector (column-ma
440440
t.end();
441441
});
442442

443-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, oa=1)', function test( t ) {
443+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, oa=1)', function test( t ) {
444444
var expected;
445445
var out;
446446
var a;
@@ -460,7 +460,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
460460
t.end();
461461
});
462462

463-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, oa=1)', function test( t ) {
463+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, oa=1)', function test( t ) {
464464
var expected;
465465
var out;
466466
var a;
@@ -480,7 +480,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
480480
t.end();
481481
});
482482

483-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sa1=4, sa2=2)', function test( t ) {
483+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sa1=4, sa2=2)', function test( t ) {
484484
var expected;
485485
var out;
486486
var a;
@@ -500,7 +500,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
500500
t.end();
501501
});
502502

503-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sa1=2, sa2=4)', function test( t ) {
503+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sa1=2, sa2=4)', function test( t ) {
504504
var expected;
505505
var out;
506506
var a;
@@ -520,7 +520,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
520520
t.end();
521521
});
522522

523-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sa1=-3, sa2=2)', function test( t ) {
523+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sa1=-3, sa2=2)', function test( t ) {
524524
var expected;
525525
var out;
526526
var a;
@@ -540,7 +540,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
540540
t.end();
541541
});
542542

543-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sa1=-2, sa2=4)', function test( t ) {
543+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sa1=-2, sa2=4)', function test( t ) {
544544
var expected;
545545
var out;
546546
var a;
@@ -560,7 +560,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
560560
t.end();
561561
});
562562

563-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sa1=3, sa2=-2)', function test( t ) {
563+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sa1=3, sa2=-2)', function test( t ) {
564564
var expected;
565565
var out;
566566
var a;
@@ -580,7 +580,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
580580
t.end();
581581
});
582582

583-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sa1=2, sa2=-3)', function test( t ) {
583+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sa1=2, sa2=-3)', function test( t ) {
584584
var expected;
585585
var out;
586586
var a;
@@ -600,7 +600,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
600600
t.end();
601601
});
602602

603-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sa1=-3, sa2=-2)', function test( t ) {
603+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sa1=-3, sa2=-2)', function test( t ) {
604604
var expected;
605605
var out;
606606
var a;
@@ -620,7 +620,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
620620
t.end();
621621
});
622622

623-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sa1=-2, sa2=-3)', function test( t ) {
623+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sa1=-2, sa2=-3)', function test( t ) {
624624
var expected;
625625
var out;
626626
var a;
@@ -640,7 +640,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
640640
t.end();
641641
});
642642

643-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sx=1, sy=1)', function test( t ) {
643+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=1, sy=1)', function test( t ) {
644644
var expected;
645645
var out;
646646
var a;
@@ -660,7 +660,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
660660
t.end();
661661
});
662662

663-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sx=1, sy=1)', function test( t ) {
663+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=1, sy=1)', function test( t ) {
664664
var expected;
665665
var out;
666666
var a;
@@ -680,7 +680,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
680680
t.end();
681681
});
682682

683-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sx=1, sy=-1)', function test( t ) {
683+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=1, sy=-1)', function test( t ) {
684684
var expected;
685685
var out;
686686
var a;
@@ -700,7 +700,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
700700
t.end();
701701
});
702702

703-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sx=1, sy=-1)', function test( t ) {
703+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=1, sy=-1)', function test( t ) {
704704
var expected;
705705
var out;
706706
var a;
@@ -720,7 +720,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
720720
t.end();
721721
});
722722

723-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sx=-1, sy=1)', function test( t ) {
723+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=-1, sy=1)', function test( t ) {
724724
var expected;
725725
var out;
726726
var a;
@@ -740,7 +740,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
740740
t.end();
741741
});
742742

743-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sx=-1, sy=1)', function test( t ) {
743+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=-1, sy=1)', function test( t ) {
744744
var expected;
745745
var out;
746746
var a;
@@ -760,7 +760,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
760760
t.end();
761761
});
762762

763-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sx=-1, sy=-1)', function test( t ) {
763+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=-1, sy=-1)', function test( t ) {
764764
var expected;
765765
var out;
766766
var a;
@@ -780,7 +780,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
780780
t.end();
781781
});
782782

783-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sx=-1, sy=-1)', function test( t ) {
783+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=-1, sy=-1)', function test( t ) {
784784
var expected;
785785
var out;
786786
var a;

0 commit comments

Comments
 (0)