@@ -13,16 +13,20 @@ Installation Guide
1313
1414## Install PyTorch
1515
16- | Extension Version| PyTorch Version|
16+ You need to make sure PyTorch is installed in order to get the extension working properly. For each PyTorch release, we have a corresponding release of the extension. Here is the PyTorch versions that we support and the mapping relationship:
17+
18+ | PyTorch Version| Extension Version|
1719| --| --|
18- | [ v1.10.0] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.10.0 ) | [ v1.10.0] ( https://github.com/pytorch/pytorch/tree/v1.10.0 " v1.10.0 ") |
19- | [ v1.9.0] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.9.0 ) | [ v1.9.0] ( https://github.com/pytorch/pytorch/tree/v1.9.0 " v1.9.0 ") |
20- | [ v1.8.0] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.8.0 ) | [ v1.8.0] ( https://github.com/pytorch/pytorch/tree/v1.8.0 " v1.8.0 ") |
21- | [ v1.2.0] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.2.0 ) | [ v1.7.0] ( https://github.com/pytorch/pytorch/tree/v1.7.0 " v1.7.0 ") |
22- | [ v1.1.0] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.1.0 ) | [ v1.5.0-rc3] ( https://github.com/pytorch/pytorch/tree/v1.5.0-rc3 " v1.5.0-rc3 ") |
23- | [ v1.0.2] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.0.2 ) | [ v1.5.0-rc3] ( https://github.com/pytorch/pytorch/tree/v1.5.0-rc3 " v1.5.0-rc3 ") |
24- | [ v1.0.1] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.0.1 ) | [ v1.5.0-rc3] ( https://github.com/pytorch/pytorch/tree/v1.5.0-rc3 " v1.5.0-rc3 ") |
25- | [ v1.0.0] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.0.0 ) | [ v1.5.0-rc3] ( https://github.com/pytorch/pytorch/tree/v1.5.0-rc3 " v1.5.0-rc3 ") |
20+ | [ v1.10.0] ( https://github.com/pytorch/pytorch/tree/v1.10.0 " v1.10.0 ") | [ v1.10.0] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.10.0 ) |
21+ | [ v1.9.0] ( https://github.com/pytorch/pytorch/tree/v1.9.0 " v1.9.0 ") | [ v1.9.0] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.9.0 ) |
22+ | [ v1.8.0] ( https://github.com/pytorch/pytorch/tree/v1.8.0 " v1.8.0 ") | [ v1.8.0] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.8.0 ) |
23+ | [ v1.7.0] ( https://github.com/pytorch/pytorch/tree/v1.7.0 " v1.7.0 ") | [ v1.2.0] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.2.0 ) |
24+ | [ v1.5.0-rc3] ( https://github.com/pytorch/pytorch/tree/v1.5.0-rc3 " v1.5.0-rc3 ") | [ v1.1.0] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.1.0 ) |
25+ | [ v1.5.0-rc3] ( https://github.com/pytorch/pytorch/tree/v1.5.0-rc3 " v1.5.0-rc3 ") | [ v1.0.2] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.0.2 ) |
26+ | [ v1.5.0-rc3] ( https://github.com/pytorch/pytorch/tree/v1.5.0-rc3 " v1.5.0-rc3 ") | [ v1.0.1] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.0.1 ) |
27+ | [ v1.5.0-rc3] ( https://github.com/pytorch/pytorch/tree/v1.5.0-rc3 " v1.5.0-rc3 ") | [ v1.0.0] ( https://github.com/intel/intel-extension-for-pytorch/tree/v1.0.0 ) |
28+
29+ Here is an example showing how to install PyTorch (1.10.0). For more details, please refer to [ pytorch.org] ( https://pytorch.org/ )
2630
2731```
2832python -m pip install torch==1.10.0+cpu -f https://download.pytorch.org/whl/cpu/torch_stable.html
@@ -40,6 +44,8 @@ From 1.8.0, compiling PyTorch from source is not required. If you still want to
4044
4145## Install via wheel file
4246
47+ Prebuilt wheel files are available starting from 1.8.0 release. We recommend you to install the latest version (1.10.0) with the following commands:
48+
4349```
4450python -m pip install intel_extension_for_pytorch==1.10.0 -f https://software.intel.com/ipex-whl-stable
4551python -m pip install psutil
@@ -62,6 +68,7 @@ python -m pip install psutil
6268``` bash
6369git clone --recursive https://github.com/intel/intel-extension-for-pytorch
6470cd intel-extension-for-pytorch
71+ git checkout release/1.10
6572
6673# if you are updating an existing checkout
6774git submodule sync
0 commit comments