Title: Custom Python Operators — 파이토치 한국어 튜토리얼 (PyTorch tutorials in Korean)
Open Graph Title: Custom Python Operators
Description: What you will learn How to integrate custom operators written in Python with PyTorch, How to test custom operators using torch.library.opcheck. Prerequisites PyTorch 2.4 or later. PyTorch offers a large library of operators that work on Tensors (e.g. torch.add, torch.sum, etc). However, you might...
Open Graph Description: What you will learn How to integrate custom operators written in Python with PyTorch, How to test custom operators using torch.library.opcheck. Prerequisites PyTorch 2.4 or later. PyTorch offers a large library of operators that work on Tensors (e.g. torch.add, torch.sum, etc). However, you might...
Opengraph URL: https://tutorials.pytorch.kr/advanced/python_custom_ops.html
Domain: tutorials.pytorch.kr
{
"@context": "https://schema.org",
"@type": "Article",
"name": "Custom Python Operators",
"headline": "Custom Python Operators",
"description": "PyTorch Documentation. Explore PyTorch, an open-source machine learning library that accelerates the path from research prototyping to production deployment. Discover tutorials, API references, and guides to help you build and deploy deep learning models efficiently.",
"url": "/advanced/python_custom_ops.html",
"articleBody": "\ucc38\uace0 Go to the end to download the full example code. Custom Python Operators# What you will learn How to integrate custom operators written in Python with PyTorch How to test custom operators using torch.library.opcheck Prerequisites PyTorch 2.4 or later PyTorch offers a large library of operators that work on Tensors (e.g. torch.add, torch.sum, etc). However, you might wish to use a new customized operator with PyTorch, perhaps written by a third-party library. This tutorial shows how to wrap Python functions so that they behave like PyTorch native operators. Reasons why you may wish to create a custom operator in PyTorch include: Treating an arbitrary Python function as an opaque callable with respect to torch.compile (that is, prevent torch.compile from tracing into the function). Adding training support to an arbitrary Python function Use torch.library.custom_op() to create Python custom operators. Use the C++ TORCH_LIBRARY APIs to create C++ custom operators (these work in Python-less environments). See the Custom Operators Landing Page for more details. Please note that if your operation can be expressed as a composition of existing PyTorch operators, then there is usually no need to use the custom operator API \u2013 everything (for example torch.compile, training support) should just work. Example: Wrapping PIL\u2019s crop into a custom operator# Let\u2019s say that we are using PIL\u2019s crop operation. import torch from torchvision.transforms.functional import to_pil_image, pil_to_tensor import PIL import IPython import matplotlib.pyplot as plt def crop(pic, box): img = to_pil_image(pic.cpu()) cropped_img = img.crop(box) return pil_to_tensor(cropped_img).to(pic.device) / 255. def display(img): plt.imshow(img.numpy().transpose((1, 2, 0))) img = torch.ones(3, 64, 64) img *= torch.linspace(0, 1, steps=64) * torch.linspace(0, 1, steps=64).unsqueeze(-1) display(img) cropped_img = crop(img, (10, 10, 50, 50)) display(cropped_img) crop is not handled effectively out-of-the-box by torch.compile: torch.compile induces a \u201cgraph break\u201d on functions it is unable to handle and graph breaks are bad for performance. The following code demonstrates this by raising an error (torch.compile with fullgraph=True raises an error if a graph break occurs). @torch.compile(fullgraph=True) def f(img): return crop(img, (10, 10, 50, 50)) # The following raises an error. Uncomment the line to see it. # cropped_img = f(img) In order to black-box crop for use with torch.compile, we need to do two things: wrap the function into a PyTorch custom operator. add a \u201cFakeTensor kernel\u201d (aka \u201cmeta kernel\u201d) to the operator. Given some FakeTensors inputs (dummy Tensors that don\u2019t have storage), this function should return dummy Tensors of your choice with the correct Tensor metadata (shape/strides/dtype/device). from typing import Sequence # Use torch.library.custom_op to define a new custom operator. # If your operator mutates any input Tensors, their names must be specified # in the ``mutates_args`` argument. @torch.library.custom_op(\"mylib::crop\", mutates_args=()) def crop(pic: torch.Tensor, box: Sequence[int]) -\u003e torch.Tensor: img = to_pil_image(pic.cpu()) cropped_img = img.crop(box) return (pil_to_tensor(cropped_img) / 255.).to(pic.device, pic.dtype) # Use register_fake to add a ``FakeTensor`` kernel for the operator @crop.register_fake def _(pic, box): channels = pic.shape[0] x0, y0, x1, y1 = box result = pic.new_empty(y1 - y0, x1 - x0, channels).permute(2, 0, 1) # The result should have the same metadata (shape/strides/``dtype``/device) # as running the ``crop`` function above. return result After this, crop now works without graph breaks: @torch.compile(fullgraph=True) def f(img): return crop(img, (10, 10, 50, 50)) cropped_img = f(img) display(img) display(cropped_img) Adding training support for crop# Use torch.library.register_autograd to add training support for an operator. Prefer this over directly using torch.autograd.Function; some compositions of autograd.Function with PyTorch operator registration APIs can lead to (and has led to) silent incorrectness when composed with torch.compile. If you don\u2019t need training support, there is no need to use torch.library.register_autograd. If you end up training with a custom_op that doesn\u2019t have an autograd registration, we\u2019ll raise an error message. The gradient formula for crop is essentially PIL.paste (we\u2019ll leave the derivation as an exercise to the reader). Let\u2019s first wrap paste into a custom operator: @torch.library.custom_op(\"mylib::paste\", mutates_args=()) def paste(im1: torch.Tensor, im2: torch.Tensor, coord: Sequence[int]) -\u003e torch.Tensor: assert im1.device == im2.device assert im1.dtype == im2.dtype im1_pil = to_pil_image(im1.cpu()) im2_pil = to_pil_image(im2.cpu()) PIL.Image.Image.paste(im1_pil, im2_pil, coord) return (pil_to_tensor(im1_pil) / 255.).to(im1.device, im1.dtype) @paste.register_fake def _(im1, im2, coord): assert im1.device == im2.device assert im1.dtype == im2.dtype return torch.empty_like(im1) And now let\u2019s use register_autograd to specify the gradient formula for crop: def backward(ctx, grad_output): grad_input = grad_output.new_zeros(ctx.pic_shape) grad_input = paste(grad_input, grad_output, ctx.coords) return grad_input, None def setup_context(ctx, inputs, output): pic, box = inputs ctx.coords = box[:2] ctx.pic_shape = pic.shape crop.register_autograd(backward, setup_context=setup_context) Note that the backward must be a composition of PyTorch-understood operators, which is why we wrapped paste into a custom operator instead of directly using PIL\u2019s paste. img = img.requires_grad_() result = crop(img, (10, 10, 50, 50)) result.sum().backward() display(img.grad) This is the correct gradient, with 1s (white) in the cropped region and 0s (black) in the unused region. Testing Python Custom operators# Use torch.library.opcheck to test that the custom operator was registered correctly. This does not test that the gradients are mathematically correct; please write separate tests for that (either manual ones or torch.autograd.gradcheck). To use opcheck, pass it a set of example inputs to test against. If your operator supports training, then the examples should include Tensors that require grad. If your operator supports multiple devices, then the examples should include Tensors from each device. examples = [ [torch.randn(3, 64, 64), [0, 0, 10, 10]], [torch.randn(3, 91, 91, requires_grad=True), [10, 0, 20, 10]], [torch.randn(3, 60, 60, dtype=torch.double), [3, 4, 32, 20]], [torch.randn(3, 512, 512, requires_grad=True, dtype=torch.double), [3, 4, 32, 45]], ] for example in examples: torch.library.opcheck(crop, example) Mutable Python Custom operators# You can also wrap a Python function that mutates its inputs into a custom operator. Functions that mutate inputs are common because that is how many low-level kernels are written; for example, a kernel that computes sin may take in the input and an output tensor and write input.sin() to the output tensor. We\u2019ll use numpy.sin to demonstrate an example of a mutable Python custom operator. import numpy as np @torch.library.custom_op(\"mylib::numpy_sin\", mutates_args={\"output\"}, device_types=\"cpu\") def numpy_sin(input: torch.Tensor, output: torch.Tensor) -\u003e None: assert input.device == output.device assert input.device.type == \"cpu\" input_np = input.numpy() output_np = output.numpy() np.sin(input_np, out=output_np) Because the operator doesn\u2019t return anything, there is no need to register a FakeTensor kernel (meta kernel) to get it to work with torch.compile. @torch.compile(fullgraph=True) def f(x): out = torch.empty(3) numpy_sin(x, out) return out x = torch.randn(3) y = f(x) assert torch.allclose(y, x.sin()) And here\u2019s an opcheck run telling us that we did indeed register the operator correctly. opcheck would error out if we forgot to add the output to mutates_args, for example. example_inputs = [ [torch.randn(3), torch.empty(3)], [torch.randn(0, 3), torch.empty(0, 3)], [torch.randn(1, 2, 3, 4, dtype=torch.double), torch.empty(1, 2, 3, 4, dtype=torch.double)], ] for example in example_inputs: torch.library.opcheck(numpy_sin, example) Conclusion# In this tutorial, we learned how to use torch.library.custom_op to create a custom operator in Python that works with PyTorch subsystems such as torch.compile and autograd. This tutorial provides a basic introduction to custom operators. For more detailed information, see: the torch.library documentation the Custom Operators Manual Total running time of the script: (0 minutes 7.787 seconds) Download Jupyter notebook: python_custom_ops.ipynb Download Python source code: python_custom_ops.py Download zipped: python_custom_ops.zip",
"author": {
"@type": "Organization",
"name": "PyTorch Contributors",
"url": "https://pytorch.org"
},
"image": "../_static/img/pytorch_seo.png",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "/advanced/python_custom_ops.html"
},
"datePublished": "2023-01-01T00:00:00Z",
"dateModified": "2023-01-01T00:00:00Z"
}
| article:modified_time | 2022-11-30T07:09:41+00:00 |
| og:type | article |
| og:site_name | PyTorch Tutorials KR |
| og:image | ../_static/img/pytorch_seo.png |
| og:image:alt | PyTorch Tutorials KR |
| og:ignore_canonical | true |
| docsearch:language | ko |
| docbuild:last-update | 2022년 11월 30일 |
| None | 2 |
| pytorch_project | tutorials |
Links:
Viewport: width=device-width, initial-scale=1