-
Notifications
You must be signed in to change notification settings - Fork 708
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ashwin Vaidya <[email protected]>
- Loading branch information
1 parent
b780754
commit 33a0e0e
Showing
3 changed files
with
88 additions
and
0 deletions.
There are no files selected for viewing
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
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
52 changes: 52 additions & 0 deletions
52
docs/source/markdown/guides/how_to/training_on_intel_gpus/index.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,52 @@ | ||
# Training on Intel GPUs | ||
|
||
This tutorial demonstrates how to train a model on Intel GPUs using anomalib. | ||
Anomalib comes with XPU accelerator and strategy for PyTorch Lightning. This allows you to train your models on Intel GPUs. | ||
|
||
> [!Note] | ||
> Currently, only single GPU training is supported on Intel GPUs. | ||
> These commands were tested on Arc 750 and Arc 770. | ||
## Installing Drivers | ||
|
||
First, check if you have the correct drivers installed. If you are on Ubuntu, you can refer to the [following guide](https://dgpu-docs.intel.com/driver/client/overview.html). | ||
|
||
Another recommended tool is `xpu-smi` which can be installed from the [releases](https://github.com/intel/xpumanager) page. | ||
|
||
If everything is installed correctly, you should be able to see your card using the following command: | ||
|
||
```bash | ||
xpu-smi discovery | ||
``` | ||
|
||
## Installing PyTorch | ||
|
||
Then, ensure that you have PyTorch with XPU support installed. For more information, please refer to the [PyTorch XPU documentation](https://pytorch.org/docs/stable/notes/get_start_xpu.html) | ||
|
||
To ensure that your PyTorch installation supports XPU, you can run the following command: | ||
|
||
```bash | ||
python -c "import torch; print(torch.xpu.is_available())" | ||
``` | ||
|
||
If the command returns `True`, then your PyTorch installation supports XPU. | ||
|
||
## 🔌 API | ||
|
||
```python | ||
from anomalib.data import MVTec | ||
from anomalib.engine import Engine, SingleXPUStrategy, XPUAccelerator | ||
from anomalib.models import Stfpm | ||
|
||
engine = Engine( | ||
strategy=SingleXPUStrategy(), | ||
accelerator=XPUAccelerator(), | ||
) | ||
engine.train(Stfpm(), datamodule=MVTec()) | ||
``` | ||
|
||
## ⌨️ CLI | ||
|
||
```bash | ||
anomalib train --model Padim --data MVTec --trainer.accelerator xpu --trainer.strategy xpu_single | ||
``` |