-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add ipex xpu example to 3x API (#1948)
Signed-off-by: violetch24 <zixuan@aia-sdp-spr-117706.jf.intel.com>
- Loading branch information
1 parent
19024b3
commit 6e1b1da
Showing
13 changed files
with
2,402 additions
and
0 deletions.
There are no files selected for viewing
100 changes: 100 additions & 0 deletions
100
...h/image_recognition/torchvision_models/quantization/static_quant/ipex/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
Step-by-Step | ||
============ | ||
|
||
This document describes the step-by-step instructions for reproducing PyTorch tuning results with Intel® Neural Compressor. | ||
|
||
# Prerequisite | ||
|
||
## 1. Environment | ||
|
||
We verified examples with IPEX backend on Python 3.10, recommended. | ||
|
||
```shell | ||
pip install -r requirements.txt | ||
``` | ||
|
||
## 2. Install Intel-Pytorch-Extension | ||
|
||
Please refer to [intel/intel-extension-for-pytorch(github.com)](https://github.com/intel/intel-extension-for-pytorch). | ||
|
||
### Install IPEX CPU | ||
|
||
> Note: GCC9 compiler is recommended | ||
```shell | ||
python -m pip install intel_extension_for_pytorch -f https://software.intel.com/ipex-whl-stable | ||
``` | ||
|
||
### Install IPEX XPU | ||
Please build an IPEX docker container according to the [official guide](https://intel.github.io/intel-extension-for-pytorch/index.html#installation?platform=gpu&version=v2.1.30%2bxpu&os=linux%2fwsl2&package=docker). | ||
|
||
You can run a simple sanity test to double confirm if the correct version is installed, and if the software stack can get correct hardware information onboard your system. The command should return PyTorch and IPEX versions installed, as well as GPU card(s) information detected. | ||
```bash | ||
source {DPCPPROOT}/env/vars.sh | ||
source {MKLROOT}/env/vars.sh | ||
source {CCLROOT}/env/vars.sh | ||
source {MPIROOT}/env/vars.sh | ||
python -c "import torch; import intel_extension_for_pytorch as ipex; print(torch.__version__); print(ipex.__version__); [print(f'[{i}]: {torch.xpu.get_device_properties(i)}') for i in range(torch.xpu.device_count())];" | ||
``` | ||
Please also refer to this [tutorial](https://intel.github.io/intel-extension-for-pytorch/index.html#installation?platform=gpu&version=v2.1.30%2bxpu&os=linux%2fwsl2&package=conda) to check system requirements and install dependencies. | ||
|
||
## 3. Prepare Dataset | ||
|
||
Download [ImageNet](http://www.image-net.org/) Raw image to dir: /path/to/imagenet. The dir include below folder: | ||
|
||
```bash | ||
ls /path/to/imagenet | ||
train val | ||
``` | ||
|
||
# Run with CPU | ||
|
||
> Note: All torchvision model names can be passed as long as they are included in `torchvision.models`, below are some examples. | ||
|
||
### 1. ResNet18 With Intel PyTorch Extension | ||
|
||
```shell | ||
python main.py -t -a resnet18 --ipex --pretrained /path/to/imagenet | ||
``` | ||
or | ||
```shell | ||
bash run_quant.sh --input_model=resnet18 --dataset_location=/path/to/imagenet | ||
bash run_benchmark.sh --input_model=resnet18 --dataset_location=/path/to/imagenet --mode=performance/accuracy --int8=true/false | ||
``` | ||
|
||
### 2. ResNet50 With Intel PyTorch Extension | ||
|
||
```shell | ||
python main.py -t -a resnet50 --ipex --pretrained /path/to/imagenet | ||
``` | ||
or | ||
```shell | ||
bash run_quant.sh --input_model=resnet50 --dataset_location=/path/to/imagenet | ||
bash run_benchmark.sh --input_model=resnet50 --dataset_location=/path/to/imagenet --mode=performance/accuracy --int8=true/false | ||
``` | ||
|
||
### 3. ResNext101_32x16d With Intel PyTorch Extension | ||
|
||
```shell | ||
python main.py -t -a resnext101_32x16d_wsl --hub --ipex --pretrained /path/to/imagenet | ||
``` | ||
or | ||
```shell | ||
bash run_quant.sh --input_model=resnext101_32x16d_wsl --dataset_location=/path/to/imagenet | ||
bash run_benchmark.sh --input_model=resnext101_32x16d_wsl --dataset_location=/path/to/imagenet --mode=performance/accuracy --int8=true/false | ||
``` | ||
|
||
# Run with XPU | ||
|
||
> Note: All torchvision model names can be passed as long as they are included in `torchvision.models`, below are some examples. | ||
|
||
### 1. ResNet18 With Intel PyTorch Extension | ||
|
||
```shell | ||
python main.py -t -a resnet18 --ipex --pretrained /path/to/imagenet --xpu | ||
``` | ||
or | ||
```shell | ||
bash run_quant.sh --input_model=resnet18 --dataset_location=/path/to/imagenet | ||
bash run_benchmark.sh --input_model=resnet18 --dataset_location=/path/to/imagenet --mode=performance/accuracy --int8=true/false --xpu=true/false | ||
``` |
Oops, something went wrong.