Searched refs:LHSMatType (Results 1 – 1 of 1) sorted by relevance
13431 const MatrixType *LHSMatType = LHSType->getAs<MatrixType>(); in CheckMatrixElementwiseOperands() local13433 assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix"); in CheckMatrixElementwiseOperands()13442 if (LHSMatType && !RHSMatType) { in CheckMatrixElementwiseOperands()13443 RHS = tryConvertExprToType(RHS.get(), LHSMatType->getElementType()); in CheckMatrixElementwiseOperands()13450 if (!LHSMatType && RHSMatType) { in CheckMatrixElementwiseOperands()13472 auto *LHSMatType = LHS.get()->getType()->getAs<ConstantMatrixType>(); in CheckMatrixMultiplyOperands() local13474 assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix"); in CheckMatrixMultiplyOperands()13476 if (LHSMatType && RHSMatType) { in CheckMatrixMultiplyOperands()13477 if (LHSMatType->getNumColumns() != RHSMatType->getNumRows()) in CheckMatrixMultiplyOperands()13480 if (Context.hasSameType(LHSMatType, RHSMatType)) in CheckMatrixMultiplyOperands()[all …]