Intel® Extension for PyTorch*
Project description
Intel® Extension for PyTorch*
Intel® Extension for PyTorch* extends PyTorch* with up-to-date features optimizations for an extra performance boost on Intel hardware. Optimizations take advantage of AVX-512 Vector Neural Network Instructions (AVX512 VNNI) and Intel® Advanced Matrix Extensions (Intel® AMX) on Intel CPUs as well as Intel Xe Matrix Extensions (XMX) AI engines on Intel discrete GPUs. Moreover, through PyTorch* xpu
device, Intel® Extension for PyTorch* provides easy GPU acceleration for Intel discrete GPUs with PyTorch*.
Intel® Extension for PyTorch* provides optimizations for both eager mode and graph mode, however, compared to eager mode, graph mode in PyTorch* normally yields better performance from optimization techniques, such as operation fusion. Intel® Extension for PyTorch* amplifies them with more comprehensive graph optimizations. Therefore we recommend you to take advantage of Intel® Extension for PyTorch* with TorchScript whenever your workload supports it. You could choose to run with torch.jit.trace()
function or torch.jit.script()
function, but based on our evaluation, torch.jit.trace()
supports more workloads so we recommend you to use torch.jit.trace()
as your first choice.
The extension can be loaded as a Python module for Python programs or linked as a C++ library for C++ programs. In Python scripts users can enable it dynamically by importing intel_extension_for_pytorch
.
- Check CPU tutorial for detailed information of Intel® Extension for PyTorch* for Intel® CPUs. Source code is available at the master branch.
- Check GPU tutorial for detailed information of Intel® Extension for PyTorch* for Intel® GPUs. Source code is available at the xpu-master branch.
Installation
CPU version
You can use either of the following 2 commands to install Intel® Extension for PyTorch* CPU version.
python -m pip install intel_extension_for_pytorch
python -m pip install intel_extension_for_pytorch -f https://software.intel.com/ipex-whl-stable-cpu
Note: Intel® Extension for PyTorch* has PyTorch version requirement. Please check more detailed information via the URL below.
More installation methods can be found at CPU Installation Guide
GPU version
You can install Intel® Extension for PyTorch* for GPU via command below.
python -m pip install torch==1.10.0a0 -f https://developer.intel.com/ipex-whl-stable-xpu
python -m pip install intel_extension_for_pytorch==1.10.200+gpu -f https://software.intel.com/ipex-whl-stable-xpu
Note: The patched PyTorch 1.10.0a0 is required to work with Intel® Extension for PyTorch* on Intel® graphics card for now.
More installation methods can be found at GPU Installation Guide
Getting Started
Minor code changes are required for users to get start with Intel® Extension for PyTorch*. Both PyTorch imperative mode and TorchScript mode are supported. You just need to import Intel® Extension for PyTorch* package and apply its optimize function against the model object. If it is a training workload, the optimize function also needs to be applied against the optimizer object.
The following code snippet shows an inference code with FP32 data type. More examples on CPU, including training and C++ examples, are available at CPU Example page. More examples on GPU are available at GPU Example page.
Inference on CPU
import torch
import torchvision.models as models
model = models.resnet50(pretrained=True)
model.eval()
data = torch.rand(1, 3, 224, 224)
import intel_extension_for_pytorch as ipex
model = ipex.optimize(model)
with torch.no_grad():
model(data)
Inference on GPU
import torch
import torchvision.models as models
model = models.resnet50(pretrained=True)
model.eval()
data = torch.rand(1, 3, 224, 224)
import intel_extension_for_pytorch as ipex
model.to('xpu')
data.to('xpu')
model = ipex.optimize(model)
with torch.no_grad():
model(data)
Model Zoo
Use cases that had already been optimized by Intel engineers are available at Model Zoo for Intel® Architecture. A bunch of PyTorch use cases for benchmarking are also available on the Github page. You can get performance benefits out-of-box by simply running scipts in the Model Zoo.
License
Apache License, Version 2.0. As found in LICENSE file.
Security
See Intel's Security Center for information on how to report a potential security issue or vulnerability.
See also: Security Policy
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
File details
Details for the file intel_extension_for_pytorch-1.13.0-cp310-cp310-manylinux2014_x86_64.whl
.
File metadata
- Download URL: intel_extension_for_pytorch-1.13.0-cp310-cp310-manylinux2014_x86_64.whl
- Upload date:
- Size: 41.4 MB
- Tags: CPython 3.10
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e936a7cf688e3dc075971c8517db7173feb27dc0c2b6e02bd76bfae5372a537 |
|
MD5 | 469d7033c3ad82fad86f730c0424975d |
|
BLAKE2b-256 | 0730897603ee096bf37608a63f9941ded780ed37adbd5f9f4ef8606bd2a7f045 |
File details
Details for the file intel_extension_for_pytorch-1.13.0-cp39-cp39-manylinux2014_x86_64.whl
.
File metadata
- Download URL: intel_extension_for_pytorch-1.13.0-cp39-cp39-manylinux2014_x86_64.whl
- Upload date:
- Size: 40.7 MB
- Tags: CPython 3.9
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38bb32e4f5ba92e43823fda262ed2d34aaafc578fb1fb98a2d2f353d798f3760 |
|
MD5 | 89595140a315bdbcd9bd40912670f1f4 |
|
BLAKE2b-256 | d270390d1eddc0481a11fea181a3db27962d8249bfc034db2888e86fc86f4fb7 |
File details
Details for the file intel_extension_for_pytorch-1.13.0-cp38-cp38-manylinux2014_x86_64.whl
.
File metadata
- Download URL: intel_extension_for_pytorch-1.13.0-cp38-cp38-manylinux2014_x86_64.whl
- Upload date:
- Size: 41.4 MB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9b21d36374b748282dbde8d7ba7a65c347c91f226f3b0a1264f83a02d213c73 |
|
MD5 | 7df1f90f9554679b68539b3ed179ef4b |
|
BLAKE2b-256 | 00b9609c41cb0934974e95f8707bb3a1d42dd75fa050b83208c940aba1326c6e |
File details
Details for the file intel_extension_for_pytorch-1.13.0-cp37-cp37m-manylinux2014_x86_64.whl
.
File metadata
- Download URL: intel_extension_for_pytorch-1.13.0-cp37-cp37m-manylinux2014_x86_64.whl
- Upload date:
- Size: 41.4 MB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1cdd941d441e0555c26f07c1b74175559a67633e1bec7fb9fe37f9f1696df65 |
|
MD5 | 2aa78013f5472a1229848d3390eda427 |
|
BLAKE2b-256 | ff43373cd7ae41e53a4f12ccc49dfce853ff03306d3b4e7c1e9cc1d284aee237 |