Searched refs:RHSMatType (Results 1 – 1 of 1) sorted by relevance
12363 const MatrixType *RHSMatType = RHSType->getAs<MatrixType>(); in CheckMatrixElementwiseOperands() local12364 assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix"); in CheckMatrixElementwiseOperands()12373 if (LHSMatType && !RHSMatType) { in CheckMatrixElementwiseOperands()12381 if (!LHSMatType && RHSMatType) { in CheckMatrixElementwiseOperands()12382 LHS = tryConvertExprToType(LHS.get(), RHSMatType->getElementType()); in CheckMatrixElementwiseOperands()12404 auto *RHSMatType = RHS.get()->getType()->getAs<ConstantMatrixType>(); in CheckMatrixMultiplyOperands() local12405 assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix"); in CheckMatrixMultiplyOperands()12407 if (LHSMatType && RHSMatType) { in CheckMatrixMultiplyOperands()12408 if (LHSMatType->getNumColumns() != RHSMatType->getNumRows()) in CheckMatrixMultiplyOperands()12412 RHSMatType->getElementType())) in CheckMatrixMultiplyOperands()[all …]