Searched refs:LHSMatType (Results 1 – 1 of 1) sorted by relevance
12848 const MatrixType *LHSMatType = LHSType->getAs<MatrixType>(); in CheckMatrixElementwiseOperands() local12850 assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix"); in CheckMatrixElementwiseOperands()12859 if (LHSMatType && !RHSMatType) { in CheckMatrixElementwiseOperands()12860 RHS = tryConvertExprToType(RHS.get(), LHSMatType->getElementType()); in CheckMatrixElementwiseOperands()12867 if (!LHSMatType && RHSMatType) { in CheckMatrixElementwiseOperands()12889 auto *LHSMatType = LHS.get()->getType()->getAs<ConstantMatrixType>(); in CheckMatrixMultiplyOperands() local12891 assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix"); in CheckMatrixMultiplyOperands()12893 if (LHSMatType && RHSMatType) { in CheckMatrixMultiplyOperands()12894 if (LHSMatType->getNumColumns() != RHSMatType->getNumRows()) in CheckMatrixMultiplyOperands()12897 if (Context.hasSameType(LHSMatType, RHSMatType)) in CheckMatrixMultiplyOperands()[all …]