Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
  • Loading branch information
ShabiShett07 authored Jun 26, 2025
commit 53d050745f3df0f8152729ac3e748fc736803f1a
8 changes: 4 additions & 4 deletions lib/node_modules/@stdlib/blas/base/zher/test/test.ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ tape( 'the function throws an error if provided an invalid ninth argument', func
}
});

tape( 'the function performs the symmetric rank 1 operation `A = α*x*x^T + A` (row-major, lower)', function test( t ) {
tape( 'the function performs the rank 1 operation `A = alpha*x*x**H + A` (row-major, lower)', function test( t ) {
var expected;
var data;
var out;
Expand All @@ -209,7 +209,7 @@ tape( 'the function performs the symmetric rank 1 operation `A = α*x*x^T + A` (
t.end();
});

tape( 'the function performs the symmetric rank 1 operation `A = α*x*x^T + A` (column-major, lower)', function test( t ) {
tape( 'the function performs the rank 1 operation `A = alpha*x*x**H + A` (column-major, lower)', function test( t ) {
var expected;
var data;
var out;
Expand All @@ -230,7 +230,7 @@ tape( 'the function performs the symmetric rank 1 operation `A = α*x*x^T + A` (
t.end();
});

tape( 'the function performs the symmetric rank 1 operation `A = α*x*x^T + A` (column-major, upper)', function test( t ) {
tape( 'the function performs the rank 1 operation `A = alpha*x*x**H + A` (column-major, upper)', function test( t ) {
var expected;
var data;
var out;
Expand All @@ -251,7 +251,7 @@ tape( 'the function performs the symmetric rank 1 operation `A = α*x*x^T + A` (
t.end();
});

tape( 'the function performs the symmetric rank 1 operation `A = α*x*x^T + A` (row-major, upper)', function test( t ) {
tape( 'the function performs the rank 1 operation `A = alpha*x*x**H + A` (row-major, upper)', function test( t ) {
var expected;
var data;
var out;
Expand Down
Loading