Lines Matching defs:lhsShape
104 auto lhsShape = lhsType.getShape();
107 if (lhsShape.empty() || rhsShape.empty())
110 if (ShapedType::isDynamicShape(lhsShape) || ShapedType::isDynamicShape(rhsShape))
115 while (currLhsDim < lhsShape.size() && currRhsDim < rhsShape.size()) {
117 int64_t lhsSize = lhsShape[currLhsDim];
118 while (lhsSize != rhsSize && currLhsDim < lhsShape.size() &&
122 if (currLhsDim < lhsShape.size()) {
123 lhsSize *= lhsShape[currLhsDim];
141 for (; currLhsDim < lhsShape.size(); currLhsDim++) {
142 assert(lhsShape[currLhsDim] == 1);