Lines Matching defs:rhsShape
105 auto rhsShape = rhsType.getShape();
107 if (lhsShape.empty() || rhsShape.empty())
110 if (ShapedType::isDynamicShape(lhsShape) || ShapedType::isDynamicShape(rhsShape))
115 while (currLhsDim < lhsShape.size() && currRhsDim < rhsShape.size()) {
116 int64_t rhsSize = rhsShape[currRhsDim];
119 currRhsDim < rhsShape.size()) {
127 if (currRhsDim < rhsShape.size()) {
128 rhsSize *= rhsShape[currRhsDim];
144 for (; currRhsDim < rhsShape.size(); currRhsDim++) {
145 assert(rhsShape[currRhsDim] == 1);