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
throw new TypeError( format( 'invalid argument. First argument must be a valid BLAS operation side. Value: `%s`.', side ) );
334
-
}
335
-
if ( !isTransposeOperation( trans ) ) {
336
-
throw new TypeError( format( 'invalid argument. Second argument must be a valid BLAS transpose operation. Value: `%s`.', trans ) );
337
-
}
338
-
if ( direct !== 'forward' && direct !== 'backward' ) {
339
-
throw new TypeError( format( 'invalid argument. Third argument must be either `forward` or `backward`. Value: `%s`.', direct ) );
340
-
}
332
+
if ( !isOperationSide( side ) ) <spanclass="branch-0 cbranch-no" title="branch not covered" >{</span>
333
+
<spanclass="cstat-no" title="statement not covered" > throw new TypeError( format( 'invalid argument. First argument must be a valid BLAS operation side. Value: `%s`.', side ) );</span>
334
+
<spanclass="cstat-no" title="statement not covered" > }</span>
335
+
if ( !isTransposeOperation( trans ) ) <spanclass="branch-0 cbranch-no" title="branch not covered" >{</span>
336
+
<spanclass="cstat-no" title="statement not covered" > throw new TypeError( format( 'invalid argument. Second argument must be a valid BLAS transpose operation. Value: `%s`.', trans ) );</span>
337
+
<spanclass="cstat-no" title="statement not covered" > }</span>
338
+
if ( direct !== 'forward' && direct !== 'backward' ) <spanclass="branch-0 cbranch-no" title="branch not covered" >{</span>
339
+
<spanclass="cstat-no" title="statement not covered" > throw new TypeError( format( 'invalid argument. Third argument must be either `forward` or `backward`. Value: `%s`.', direct ) );</span>
340
+
<spanclass="cstat-no" title="statement not covered" > }</span>
341
341
if ( !isMatrixOrientation( storev ) ) {
342
342
throw new TypeError( format( 'invalid argument. Fourth argument must be a valid matrix orientation. Value: `%s`.', storev ) );
343
343
}
344
-
<spanclass="cstat-no" title="statement not covered" ><spanclass="branch-0 cbranch-no" title="branch not covered" > return base( side, trans, direct, storev, M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork ); // eslint-disable-line max-len</span></span>
0 commit comments