Skip to content

Commit dcabe00

Browse files
authored
upgrade ipex version number to 1.12.100 (#1010)
1 parent b805e91 commit dcabe00

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ python -m pip install intel_extension_for_pytorch -f https://software.intel.com/
2020

2121
**Note:** Intel® Extension for PyTorch\* has PyTorch version requirement. Please check more detailed information via the URL below.
2222

23-
More installation methods can be found at [Installation Guide](https://intel.github.io/intel-extension-for-pytorch/1.12.0/tutorials/installation.html)
23+
More installation methods can be found at [Installation Guide](https://intel.github.io/intel-extension-for-pytorch/latest/tutorials/installation.html)
2424

2525
## Getting Started
2626

2727
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.
2828

29-
The following code snippet shows an inference code with FP32 data type. More examples, including training and C++ examples, are available at [Example page](https://intel.github.io/intel-extension-for-pytorch/1.12.0/tutorials/examples.html).
29+
The following code snippet shows an inference code with FP32 data type. More examples, including training and C++ examples, are available at [Example page](https://intel.github.io/intel-extension-for-pytorch/latest/tutorials/examples.html).
3030

3131
```python
3232
import torch

docker/Dockerfile.conda

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ RUN curl -fsSL -v -o ~/miniconda.sh -O https://repo.anaconda.com/miniconda/Mini
4242
/opt/conda/bin/conda clean -ya
4343

4444
FROM dev-base AS build
45-
ARG IPEX_VERSION=v1.12.0
45+
ARG IPEX_VERSION=v1.12.100
4646
ARG PYTORCH_VERSION=v1.12.0
4747
ARG TORCHVISION_VERSION=0.13.0+cpu
4848
ARG TORCHAUDIO_VERSION=0.12.0+cpu

docker/Dockerfile.pip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN ${PYTHON} -m pip --no-cache-dir install --upgrade \
3333
# Some TF tools expect a "python" binary
3434
RUN ln -s $(which ${PYTHON}) /usr/local/bin/python
3535

36-
ARG IPEX_VERSION=1.12.0
36+
ARG IPEX_VERSION=1.12.100
3737
ARG PYTORCH_VERSION=1.12.0+cpu
3838
ARG TORCHAUDIO_VERSION=0.12.0
3939
ARG TORCHVISION_VERSION=0.13.0+cpu

docs/tutorials/installation.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Make sure PyTorch is installed so that the extension will work properly. For eac
1515

1616
|PyTorch Version|Extension Version|
1717
|--|--|
18-
|[v1.12.\*](https://github.com/pytorch/pytorch/tree/v1.12.0 "v1.12.0")|[v1.12.\*](https://github.com/intel/intel-extension-for-pytorch/tree/v1.12.0)|
18+
|[v1.12.\*](https://github.com/pytorch/pytorch/tree/v1.12.0 "v1.12.0")|[v1.12.\*](https://github.com/intel/intel-extension-for-pytorch/tree/v1.12.100)|
1919
|[v1.11.\*](https://github.com/pytorch/pytorch/tree/v1.11.0 "v1.11.0")|[v1.11.\*](https://github.com/intel/intel-extension-for-pytorch/tree/v1.11.200)|
2020
|[v1.10.\*](https://github.com/pytorch/pytorch/tree/v1.10.0 "v1.10.0")|[v1.10.\*](https://github.com/intel/intel-extension-for-pytorch/tree/v1.10.100)|
2121
|[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)|
@@ -44,6 +44,7 @@ Prebuilt wheel files availability matrix for Python versions
4444

4545
| Extension Version | Python 3.6 | Python 3.7 | Python 3.8 | Python 3.9 | Python 3.10 |
4646
| :--: | :--: | :--: | :--: | :--: | :--: |
47+
| 1.12.100 | | ✔️ | ✔️ | ✔️ | ✔️ |
4748
| 1.12.0 | | ✔️ | ✔️ | ✔️ | ✔️ |
4849
| 1.11.200 | | ✔️ | ✔️ | ✔️ | ✔️ |
4950
| 1.11.0 | | ✔️ | ✔️ | ✔️ | ✔️ |
@@ -85,7 +86,7 @@ python -m pip install <package_name>==<version_name> -f https://developer.intel.
8586
```bash
8687
git clone --recursive https://github.com/intel/intel-extension-for-pytorch
8788
cd intel-extension-for-pytorch
88-
git checkout v1.12.0
89+
git checkout v1.12.100
8990

9091
# if you are updating an existing checkout
9192
git submodule sync
@@ -128,6 +129,7 @@ docker pull intel/intel-optimized-pytorch:latest
128129

129130
|Version|Pre-cxx11 ABI|cxx11 ABI|
130131
|--|--|--|
132+
| 1.12.100 | [libintel-ext-pt-1.12.100+cpu.run](http://intel-optimized-pytorch.s3.cn-north-1.amazonaws.com.cn/libtorch_zip/libintel-ext-pt-1.12.100%2Bcpu.run) | [libintel-ext-pt-cxx11-abi-1.12.100+cpu.run](http://intel-optimized-pytorch.s3.cn-north-1.amazonaws.com.cn/libtorch_zip/libintel-ext-pt-cxx11-abi-1.12.100%2Bcpu.run) |
131133
| 1.12.0 | [libintel-ext-pt-1.12.0+cpu.run](http://intel-optimized-pytorch.s3.cn-north-1.amazonaws.com.cn/libtorch_zip/libintel-ext-pt-1.12.0%2Bcpu.run) | [libintel-ext-pt-cxx11-abi-1.12.0+cpu.run](http://intel-optimized-pytorch.s3.cn-north-1.amazonaws.com.cn/libtorch_zip/libintel-ext-pt-cxx11-abi-1.12.0%2Bcpu.run) |
132134
| 1.11.200 | [libintel-ext-pt-1.11.200+cpu.run](http://intel-optimized-pytorch.s3.cn-north-1.amazonaws.com.cn/libtorch_zip/libintel-ext-pt-shared-with-deps-1.11.200%2Bcpu.run) | [libintel-ext-pt-cxx11-abi-1.11.200+cpu.run](http://intel-optimized-pytorch.s3.cn-north-1.amazonaws.com.cn/libtorch_zip/libintel-ext-pt-cxx11-abi-shared-with-deps-1.11.200%2Bcpu.run) |
133135
| 1.11.0 | [libintel-ext-pt-1.11.0+cpu.run](http://intel-optimized-pytorch.s3.cn-north-1.amazonaws.com.cn/libtorch_zip/libintel-ext-pt-1.11.0%2Bcpu.run) | [libintel-ext-pt-cxx11-abi-1.11.0+cpu.run](http://intel-optimized-pytorch.s3.cn-north-1.amazonaws.com.cn/libtorch_zip/libintel-ext-pt-cxx11-abi-1.11.0%2Bcpu.run) |

0 commit comments

Comments
 (0)