@@ -13,16 +13,20 @@ Installation Guide
13
13
14
14
## Install PyTorch
15
15
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|
17
19
| --| --|
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/ )
26
30
27
31
```
28
32
python -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
40
44
41
45
## Install via wheel file
42
46
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
+
43
49
```
44
50
python -m pip install intel_extension_for_pytorch==1.10.0 -f https://software.intel.com/ipex-whl-stable
45
51
python -m pip install psutil
@@ -62,6 +68,7 @@ python -m pip install psutil
62
68
``` bash
63
69
git clone --recursive https://github.com/intel/intel-extension-for-pytorch
64
70
cd intel-extension-for-pytorch
71
+ git checkout release/1.10
65
72
66
73
# if you are updating an existing checkout
67
74
git submodule sync
0 commit comments