IREE can accelerate model execution on NVIDIA GPUs using CUDA and on AMD GPUs using ROCm. Due to the similarity of CUDA and ROCm APIs and infrastructure, the CUDA and ROCm backends share much of their implementation in IREE:
In order to use CUDA or ROCm to drive the GPU, you need to have a functional CUDA or ROCm environment. It can be verified by the following steps:
=== “Nvidia/CUDA”
Run the following command in a shell: ``` shell nvidia-smi | grep CUDA ``` If `nvidia-smi` does not exist, you will need to [install the latest CUDA Toolkit SDK](https://developer.nvidia.com/cuda-downloads).
=== “AMD/ROCm”
Run the following command in a shell: ``` shell rocm-smi | grep rocm ``` If `rocm-smi` does not exist, you will need to [install the latest ROCm Toolkit SDK](https://rocmdocs.amd.com/en/latest/Installation_Guide/Installation_new.html)).
Next you will need to get an IREE runtime that includes the CUDA (for Nvidia hardware) or ROCm (for AMD hardware) HAL driver.
Please make sure you have followed the Getting started page to build IREE from source, then enable the CUDA HAL driver with the IREE_HAL_DRIVER_CUDA
option or the experimental ROCm HAL driver with the IREE_EXTERNAL_HAL_DRIVERS=rocm
option.
=== “Nvidia/CUDA”
Python packages for various IREE functionalities are regularly published to [PyPI](https://pypi.org/user/google-iree-pypi-deploy/). See the [Python Bindings][../bindings/python.md] page for more details. The core `iree-compiler` package includes the CUDA compiler: ``` shell python -m pip install iree-compiler ``` !!! tip `iree-compile` is installed to your python module installation path. If you pip install with the user mode, it is under `${HOME}/.local/bin`, or `%APPDATA%Python` on Windows. You may want to include the path in your system's `PATH` environment variable. ``` shell export PATH=${HOME}/.local/bin:${PATH} ```
=== “AMD/ROCm”
Currently ROCm is **NOT supported** for the Python interface.
Please make sure you have followed the Getting started page to build the IREE compiler, then enable the CUDA compiler target with the IREE_TARGET_BACKEND_CUDA
option or the ROCm compiler target with the IREE_TARGET_BACKEND_ROCM
option.
With the compiler and runtime ready, we can now compile a model and run it on the GPU.
IREE compilers transform a model into its final deployable format in many sequential steps. A model authored with Python in an ML framework should use the corresponding framework's import tool to convert into a format (i.e., MLIR) expected by main IREE compilers first.
Using MobileNet v2 as an example, you can download the SavedModel with trained weights from TensorFlow Hub and convert it using IREE's TensorFlow importer. Then,
Let iree_input.mlir
be the model‘s initial MLIR representation generated by IREE’s TensorFlow importer. We can now compile them for each GPU by running the following command:
=== “Nvidia/CUDA”
```shell hl_lines="2-4" iree-compile \ --iree-hal-target-backends=cuda \ --iree-hal-cuda-llvm-target-arch=<...> \ --iree-input-type=mhlo \ iree_input.mlir -o mobilenet-cuda.vmfb ``` Note that a cuda target architecture(`iree-hal-cuda-llvm-target-arch`) of the form `sm_<arch_number>` is needed to compile towards each GPU architecture. If no architecture is specified then we will default to `sm_35`. Here is a table of commonly used architectures: CUDA GPU | Target Architecture :--------: | :-----------: Nvidia K80 | `sm_35` Nvidia P100 | `sm_60` Nvidia V100 | `sm_70` Nvidia A100 | `sm_80`
=== “AMD/ROCm”
```shell hl_lines="2-5" iree-compile \ --iree-hal-target-backends=rocm \ --iree-rocm-target-chip=<...> \ --iree-rocm-link-bc=true \ --iree-rocm-bc-dir=<...> \ --iree-input-type=mhlo \ iree_input.mlir -o mobilenet-rocm.vmfb ``` Note ROCm Bitcode Dir(`iree-rocm-bc-dir`) path is required. If the system you are compiling IREE in has ROCm installed, then the default value of `/opt/rocm/amdgcn/bitcode` will usually suffice. If you intend on building ROCm compiler in a non-ROCm capable system, please set `iree-rocm-bc-dir` to the absolute path where you might have saved the amdgcn bitcode. Note that a ROCm target chip(`iree-rocm-target-chip`) of the form `gfx<arch_number>` is needed to compile towards each GPU architecture. If no architecture is specified then we will default to `gfx908`. Here is a table of commonly used architectures: AMD GPU | Target Chip :--------: | :-----------: AMD MI25 | `gfx900` AMD MI50 | `gfx906` AMD MI60 | `gfx906` AMD MI100 | `gfx908`
Run the following command:
=== “Nvidia/CUDA”
``` shell hl_lines="2" iree-run-module \ --device=cuda \ --module=mobilenet-cuda.vmfb \ --function=predict \ --input="1x224x224x3xf32=0" ```
=== “AMD/ROCm”
``` shell hl_lines="2" iree-run-module \ --device=rocm \ --module=mobilenet-rocm.vmfb \ --function=predict \ --input="1x224x224x3xf32=0" ```
The above assumes the exported function in the model is named as predict
and it expects one 224x224 RGB image. We are feeding in an image with all 0 values here for brevity, see iree-run-module --help
for the format to specify concrete values.