Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp13877 const MatrixType *RHSMatType = RHSType->getAs<MatrixType>(); in CheckMatrixElementwiseOperands() local
13878 assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix"); in CheckMatrixElementwiseOperands()
13887 if (LHSMatType && !RHSMatType) { in CheckMatrixElementwiseOperands()
13895 if (!LHSMatType && RHSMatType) { in CheckMatrixElementwiseOperands()
13896 LHS = tryConvertExprToType(LHS.get(), RHSMatType->getElementType()); in CheckMatrixElementwiseOperands()
13918 auto *RHSMatType = RHS.get()->getType()->getAs<ConstantMatrixType>(); in CheckMatrixMultiplyOperands() local
13921 if (LHSMatType && RHSMatType) { in CheckMatrixMultiplyOperands()
13922 if (LHSMatType->getNumColumns() != RHSMatType->getNumRows()) in CheckMatrixMultiplyOperands()
13925 if (Context.hasSameType(LHSMatType, RHSMatType)) in CheckMatrixMultiplyOperands()
13931 RHSELTy = RHSMatType->getElementType(); in CheckMatrixMultiplyOperands()
[all …]