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

这个提交包含在:
Ben Sander
2016-04-27 11:55:09 -05:00
父节点 65813a61eb
当前提交 db75682395
+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