Skip to content

Commit 5ee3d11

Browse files
Shabareesh ShettyShabareesh Shetty
authored andcommitted
test: update 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 a25711b commit 5ee3d11

File tree

2 files changed

+40
-40
lines changed

2 files changed

+40
-40
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ tape( 'the function throws an error if provided an invalid thirteenth argument',
266266
}
267267
});
268268

269-
tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` (row-major, lower, no-transpose)', function test( t ) {
269+
tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` (row-major, lower, no-transpose)', function test( t ) {
270270
var expected;
271271
var data;
272272
var out;
@@ -288,7 +288,7 @@ tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α
288288
t.end();
289289
});
290290

291-
tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` (column-major, lower, no-transpose)', function test( t ) {
291+
tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` (column-major, lower, no-transpose)', function test( t ) {
292292
var expected;
293293
var data;
294294
var out;
@@ -310,7 +310,7 @@ tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α
310310
t.end();
311311
});
312312

313-
tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` (row-major, upper, no-transpose)', function test( t ) {
313+
tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` (row-major, upper, no-transpose)', function test( t ) {
314314
var expected;
315315
var data;
316316
var out;
@@ -332,7 +332,7 @@ tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α
332332
t.end();
333333
});
334334

335-
tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` (column-major, upper, no-transpose)', function test( t ) {
335+
tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` (column-major, upper, no-transpose)', function test( t ) {
336336
var expected;
337337
var data;
338338
var out;
@@ -354,7 +354,7 @@ tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α
354354
t.end();
355355
});
356356

357-
tape( 'the function performs the matrix-matrix operation `C = α*A**T*B + α*B**T*A + β*C` (row-major, lower, transpose)', function test( t ) {
357+
tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` (row-major, lower, transpose)', function test( t ) {
358358
var expected;
359359
var data;
360360
var out;
@@ -376,7 +376,7 @@ tape( 'the function performs the matrix-matrix operation `C = α*A**T*B + α*B**
376376
t.end();
377377
});
378378

379-
tape( 'the function performs the matrix-matrix operation `C = α*A**T*B + α*B**T*A + β*C` (column-major, lower, transpose)', function test( t ) {
379+
tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` (column-major, lower, transpose)', function test( t ) {
380380
var expected;
381381
var data;
382382
var out;
@@ -398,7 +398,7 @@ tape( 'the function performs the matrix-matrix operation `C = α*A**T*B + α*B**
398398
t.end();
399399
});
400400

401-
tape( 'the function performs the matrix-matrix operation `C = α*A**T*B + α*B**T*A + β*C` (row-major, upper, transpose)', function test( t ) {
401+
tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` (row-major, upper, transpose)', function test( t ) {
402402
var expected;
403403
var data;
404404
var out;
@@ -420,7 +420,7 @@ tape( 'the function performs the matrix-matrix operation `C = α*A**T*B + α*B**
420420
t.end();
421421
});
422422

423-
tape( 'the function performs the matrix-matrix operation `C = α*A**T*B + α*B**T*A + β*C` (column-major, upper, transpose)', function test( t ) {
423+
tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` (column-major, upper, transpose)', function test( t ) {
424424
var expected;
425425
var data;
426426
var out;

0 commit comments

Comments
 (0)