You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function dlarf1f( order, side, M, N, V, incv, tau, C, LDC, work ) {
375
+
function dlarf1f( order, side, M, N, V, strideV, tau, C, LDC, work ) {
376
376
var sc1;
377
377
var sc2;
378
378
var ov;
379
379
380
380
if ( !isLayout( order ) ) {
381
381
throw new TypeError( format( 'invalid argument. First argument must be a valid order. Value: `%s`.', order ) );
382
382
}
383
-
if ( isRowMajor( order ) && LDC < max( 1, N ) ) {
384
-
throw new RangeError( format( 'invalid argument. Fourth argument must be greater than or equal to max(1,%d). Value: `%d`.', N, LDC ) );
385
-
}
386
383
if ( !isOperationSide( side ) ) {
387
384
throw new TypeError( format( 'invalid argument. Second argument must be one of the following: "%s". Value: `%s`.', join( operationSides(), '", "' ), side ) );
388
385
}
389
-
if ( incv === 0 ) {
390
-
throw new RangeError( format( 'invalid argument. Fifth argument must be non-zero. Value: `%s`.', incv ) );
386
+
if ( strideV === 0 ) {
387
+
throw new RangeError( format( 'invalid argument. Sixth argument must be non-zero. Value: `%s`.', strideV ) );
388
+
}
389
+
if ( isRowMajor( order ) && LDC < max( 1, N ) ) {
390
+
throw new RangeError( format( 'invalid argument. Ninth argument must be greater than or equal to max(1,%d). Value: `%d`.', N, LDC ) );
throw new TypeError( format( 'invalid argument. First argument must be one of the following: "%s". Value: `%s`.', join( operationSides(), '", "' ), side ) );
322
331
}
332
+
if ( strideV === 0 ) {
333
+
throw new RangeError( format( 'invalid argument. Fifth argument must be non-zero. Value: `%s`.', strideV ) );
334
+
}
323
335
return base( side, M, N, V, strideV, offsetV, tau, C, strideC1, strideC2, offsetC, work, strideWork, offsetWork );
0 commit comments