Loading rs/java/android/renderscript/ScriptIntrinsicBLAS.java +2 −8 Original line number Diff line number Diff line Loading @@ -1039,15 +1039,9 @@ public final class ScriptIntrinsicBLAS extends ScriptIntrinsic { if (cM != cN) { throw new RSRuntimeException("Matrix C is not symmetric"); } if (TransA != NO_TRANSPOSE) { if (aN != cM) { throw new RSRuntimeException("Called BLAS with invalid dimensions"); } } else { if (aM != cM) { throw new RSRuntimeException("Called BLAS with invalid dimensions"); } } } else if (A != null && B != null) { // A and B only if (aN != bM) { Loading Loading
rs/java/android/renderscript/ScriptIntrinsicBLAS.java +2 −8 Original line number Diff line number Diff line Loading @@ -1039,15 +1039,9 @@ public final class ScriptIntrinsicBLAS extends ScriptIntrinsic { if (cM != cN) { throw new RSRuntimeException("Matrix C is not symmetric"); } if (TransA != NO_TRANSPOSE) { if (aN != cM) { throw new RSRuntimeException("Called BLAS with invalid dimensions"); } } else { if (aM != cM) { throw new RSRuntimeException("Called BLAS with invalid dimensions"); } } } else if (A != null && B != null) { // A and B only if (aN != bM) { Loading