Lines Matching defs:staticHigh
3097 ArrayRef<int64_t> staticHigh,
3102 if (staticHigh.size() != rank)
3110 staticHigh[i] == ShapedType::kDynamic) {
3114 int64_t size = sourceType.getDimSize(i) + staticLow[i] + staticHigh[i];
3127 ArrayRef<int64_t> staticHigh, ValueRange low, ValueRange high,
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
3160 dispatchIndexOpFoldResults(high, dynamicHigh, staticHigh);
3162 resultType = PadOp::inferResultType(sourceType, staticLow, staticHigh);
3167 b.getDenseI64ArrayAttr(staticLow), b.getDenseI64ArrayAttr(staticHigh),
3506 auto staticHigh = ArrayRef<int64_t>(constHigh);
3514 staticHigh[i] == ShapedType::kDynamic ||
3517 : inputDims[i] + staticLow[i] + staticHigh[i]));
3532 padTensorOp->getLoc(), newResultType, input, staticLow, staticHigh,