Home
last modified time | relevance | path

Searched refs:RHSMatType (Results 1 – 1 of 1) sorted by relevance

/external/llvm-project/clang/lib/Sema/
DSemaExpr.cpp12245 const MatrixType *RHSMatType = RHSType->getAs<MatrixType>(); in CheckMatrixElementwiseOperands() local
12246 assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix"); in CheckMatrixElementwiseOperands()
12255 if (LHSMatType && !RHSMatType) { in CheckMatrixElementwiseOperands()
12263 if (!LHSMatType && RHSMatType) { in CheckMatrixElementwiseOperands()
12264 LHS = tryConvertExprToType(LHS.get(), RHSMatType->getElementType()); in CheckMatrixElementwiseOperands()
12286 auto *RHSMatType = RHS.get()->getType()->getAs<ConstantMatrixType>(); in CheckMatrixMultiplyOperands() local
12287 assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix"); in CheckMatrixMultiplyOperands()
12289 if (LHSMatType && RHSMatType) { in CheckMatrixMultiplyOperands()
12290 if (LHSMatType->getNumColumns() != RHSMatType->getNumRows()) in CheckMatrixMultiplyOperands()
12294 RHSMatType->getElementType())) in CheckMatrixMultiplyOperands()
[all …]