Quick Start Guide
1. Get HIP
Download the current files for Windows and Linux here.
Apple currently unsupported.
Windows users, please follow these instructions!
2. Requirements
-
Nvidia graphics card (check here is your card uses compute capability 3.0 or better)
-
MATLAB 2018 or newer
-
The latest graphics driver (410.48 or better)
3. Using HIP
Unzip the file from link above.
MATLAB
-
Place all folders with the + (plus) symbol in your MATLAB folder (for Windows, this is C:\Users\username\Documents\MATLAB)
-
Ensure everything is working by running the following line:
dev = HIP.Cuda.DeviceStats()
Python
-
Place HIP.lib or HIP.so where you can import into python
-
Ensure everything is working by running the following line:
import HIP
dev = HIP.Cuda.DeviceStats()
print(dev)
4. Further Reading
Examples of filters and how they are utilized.
Further information about consistency testing.