Lines Matching defs:pad
46 llvm::ArrayRef<int64_t> pad = op.getOutPad();
62 convPad[0] = kernelHeight - 1 + pad[0];
63 convPad[1] = kernelHeight - 1 + pad[1];
64 convPad[2] = kernelWidth - 1 + pad[2];
65 convPad[3] = kernelWidth - 1 + pad[3];
115 llvm::ArrayRef<int64_t> pad = op.getOutPad();
198 // We need to pad the input far enough that we can pull all values.
236 /*pad=*/rewriter.getDenseI64ArrayAttr({0, 0, 0, 0}),
245 /*pad=*/rewriter.getDenseI64ArrayAttr({0, 0, 0, 0}),
282 // Determine the amount to slice / pad from the result start.
283 int64_t resultSliceTop = std::max<int64_t>(0, -pad[0]);
284 int64_t resultSliceLeft = std::max<int64_t>(0, -pad[2]);
285 int64_t resultPadTop = std::max<int64_t>(0, pad[0]);
286 int64_t resultPadLeft = std::max<int64_t>(0, pad[2]);