Add tip on making local HIP (mostly for HIP devs)

このコミットが含まれているのは:
Ben Sander
2016-04-27 11:55:09 -05:00
コミット a7a7817d2d
+13
ファイルの表示
@@ -1,5 +1,18 @@
# Contributor Guidelines
## Make Tips
When building HIP, you will likely want to build and install to a local user-accessible directory (rather than /opt/rocm).
This can be easily be done by setting the -DCMAKE_INSTALL_PREFIX variable when running cmake. Typical use case is to
set CMAKE_INSTALL_PREFIX to your HIP git root, and then ensure HIP_PATH points to this directory. For example
```
cmake .. -DCMAKE_INSTALL_PREFIX=..
make install
export HIP_PATH=
```
## Adding a new HIP API