Skip to content

Commit 009b5d8

Browse files
committed
Update README to clarify the IPEX version and PyTorch
Update the IPEX version in setup.py to 1.2.0
1 parent 41caea8 commit 009b5d8

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@ Intel Extension for PyTorch is a Python package to extend official PyTorch. It i
1515
## Installation
1616

1717
### Install PyTorch from Source
18+
|IPEX Version|PyTorch Version|
19+
|--|--|
20+
|[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")|
21+
|[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")|
22+
|[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")|
23+
|[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")|
24+
|[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")|
25+
26+
Take Intel-Extension-for-Pytorch v1.2.0 as the example.
1827

1928
1. Get PyTorch v1.7.0 source(Refer to [PyTorch guide](https://github.com/pytorch/pytorch#get-the-pytorch-source) for more details)
2029
```bash

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def get_git_head_sha(base_dir):
9999

100100

101101
def get_build_version(ipex_git_sha):
102-
version = os.getenv('TORCH_IPEX_VERSION', '1.1.0')
102+
version = os.getenv('TORCH_IPEX_VERSION', '1.2.0')
103103
if _check_env_flag('VERSIONED_IPEX_BUILD', default='0'):
104104
try:
105105
version += '+' + ipex_git_sha[:7]

0 commit comments

Comments
 (0)