Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/dger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ dger( 'row-major', M, N, 1.0, x, 1, y, 1, A, N );
console.log( A );

dger.ndarray( M, N, 1.0, x, 1, 0, y, 1, 0, A, 1, M, 0 );
console.log(A);
console.log( A );

```

Expand Down
5 changes: 2 additions & 3 deletions lib/node_modules/@stdlib/blas/base/dger/test/test.dger.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ var cxpyn = require( './fixtures/column_major_xpyn.json' );
var cxnyn = require( './fixtures/column_major_xnyn.json' );
var cx0 = require( './fixtures/column_major_x_zeros.json' );
var cy0 = require( './fixtures/column_major_y_zeros.json' );

var rm = require( './fixtures/row_major.json' );
var rxpyp = require( './fixtures/row_major_xpyp.json' );
var rxnyp = require( './fixtures/row_major_xnyp.json' );
Expand Down Expand Up @@ -208,7 +207,7 @@ tape( 'the function throws an error if provided an invalid tenth argument', func
}
});

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

tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) {
tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) {
var expected;
var data;
var out;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ var cxpyn = require( './fixtures/column_major_xpyn.json' );
var cxnyn = require( './fixtures/column_major_xnyn.json' );
var cx0 = require( './fixtures/column_major_x_zeros.json' );
var cy0 = require( './fixtures/column_major_y_zeros.json' );

var rm = require( './fixtures/row_major.json' );
var rxpyp = require( './fixtures/row_major_xpyp.json' );
var rxnyp = require( './fixtures/row_major_xnyp.json' );
Expand Down Expand Up @@ -217,7 +216,7 @@ tape( 'the function throws an error if provided an invalid tenth argument', opts
}
});

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

tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major)', opts, function test( t ) {
tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (column-major)', opts, function test( t ) {
var expected;
var data;
var out;
Expand Down
5 changes: 2 additions & 3 deletions lib/node_modules/@stdlib/blas/base/dger/test/test.ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ var csa1nsa2n = require( './fixtures/column_major_sa1n_sa2n.json' );
var ccap = require( './fixtures/column_major_complex_access_pattern.json' );
var cx0 = require( './fixtures/column_major_x_zeros.json' );
var cy0 = require( './fixtures/column_major_y_zeros.json' );

var rm = require( './fixtures/row_major.json' );
var roa = require( './fixtures/row_major_oa.json' );
var rox = require( './fixtures/row_major_ox.json' );
Expand Down Expand Up @@ -171,7 +170,7 @@ tape( 'the function throws an error if provided an invalid eighth argument', fun
}
});

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

tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) {
tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) {
var expected;
var data;
var out;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ var csa1nsa2n = require( './fixtures/column_major_sa1n_sa2n.json' );
var ccap = require( './fixtures/column_major_complex_access_pattern.json' );
var cx0 = require( './fixtures/column_major_x_zeros.json' );
var cy0 = require( './fixtures/column_major_y_zeros.json' );

var rm = require( './fixtures/row_major.json' );
var roa = require( './fixtures/row_major_oa.json' );
var rox = require( './fixtures/row_major_ox.json' );
Expand Down Expand Up @@ -180,7 +179,7 @@ tape( 'the function throws an error if provided an invalid eighth argument', opt
}
});

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

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