Searched refs:LHSMatType (Results 1 – 1 of 1) sorted by relevance
13214 const MatrixType *LHSMatType = LHSType->getAs<MatrixType>(); in CheckMatrixElementwiseOperands() local13216 assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix"); in CheckMatrixElementwiseOperands()13225 if (LHSMatType && !RHSMatType) { in CheckMatrixElementwiseOperands()13226 RHS = tryConvertExprToType(RHS.get(), LHSMatType->getElementType()); in CheckMatrixElementwiseOperands()13233 if (!LHSMatType && RHSMatType) { in CheckMatrixElementwiseOperands()13255 auto *LHSMatType = LHS.get()->getType()->getAs<ConstantMatrixType>(); in CheckMatrixMultiplyOperands() local13257 assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix"); in CheckMatrixMultiplyOperands()13259 if (LHSMatType && RHSMatType) { in CheckMatrixMultiplyOperands()13260 if (LHSMatType->getNumColumns() != RHSMatType->getNumRows()) in CheckMatrixMultiplyOperands()13263 if (Context.hasSameType(LHSMatType, RHSMatType)) in CheckMatrixMultiplyOperands()[all …]