Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaExpr.cpp13432 const MatrixType *RHSMatType = RHSType->getAs<MatrixType>(); in CheckMatrixElementwiseOperands() local
13433 assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix"); in CheckMatrixElementwiseOperands()
13442 if (LHSMatType && !RHSMatType) { in CheckMatrixElementwiseOperands()
13450 if (!LHSMatType && RHSMatType) { in CheckMatrixElementwiseOperands()
13451 LHS = tryConvertExprToType(LHS.get(), RHSMatType->getElementType()); in CheckMatrixElementwiseOperands()
13473 auto *RHSMatType = RHS.get()->getType()->getAs<ConstantMatrixType>(); in CheckMatrixMultiplyOperands() local
13476 if (LHSMatType && RHSMatType) { in CheckMatrixMultiplyOperands()
13477 if (LHSMatType->getNumColumns() != RHSMatType->getNumRows()) in CheckMatrixMultiplyOperands()
13480 if (Context.hasSameType(LHSMatType, RHSMatType)) in CheckMatrixMultiplyOperands()
13486 RHSELTy = RHSMatType->getElementType(); in CheckMatrixMultiplyOperands()
[all …]