Lines Matching defs:staticLow
3096 ArrayRef<int64_t> staticLow,
3100 if (staticLow.size() != rank)
3109 if (sourceType.isDynamicDim(i) || staticLow[i] == ShapedType::kDynamic ||
3114 int64_t size = sourceType.getDimSize(i) + staticLow[i] + staticHigh[i];
3126 Value source, ArrayRef<int64_t> staticLow,
3131 resultType = inferResultType(sourceType, staticLow, staticHigh);
3134 b.getDenseI64ArrayAttr(staticLow), b.getDenseI64ArrayAttr(staticHigh),
3154 SmallVector<int64_t, 4> staticLow, staticHigh;
3155 // staticLow and staticHigh have full information of the padding config.
3156 // This will grow staticLow and staticHigh with 1 value. If the config is
3159 dispatchIndexOpFoldResults(low, dynamicLow, staticLow);
3162 resultType = PadOp::inferResultType(sourceType, staticLow, staticHigh);
3167 b.getDenseI64ArrayAttr(staticLow), b.getDenseI64ArrayAttr(staticHigh),
3505 auto staticLow = ArrayRef<int64_t>(constLow);
3513 (staticLow[i] == ShapedType::kDynamic ||
3517 : inputDims[i] + staticLow[i] + staticHigh[i]));
3532 padTensorOp->getLoc(), newResultType, input, staticLow, staticHigh,