forked from reger-men/HPL_GPU
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add readme for rocm. clean up run script
- Loading branch information
1 parent
85dcc0d
commit eeff79f
Showing
2 changed files
with
27 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
System requirements: | ||
ROCM 4.3 or above | ||
OpenMPI v4.0.3 | ||
UCX v1.8.0 | ||
|
||
|
||
Environment: | ||
export MPI_DIR=<MPI install directory> | ||
export BLAS_DIR=<OpenBLAS base directory> | ||
|
||
export PATH=$MPI_DIR/bin:$PATH | ||
export LD_LIBRARY_PATH=$MPI_DIR/lib:$BLAS_DIR/lib:$LD_LIBRARY_PATH | ||
|
||
export C_INCLUDE_PATH=$MPI_DIR/include | ||
export CPLUS_INCLUDE_PATH=$MPI_DIR/include | ||
|
||
Build HPL-GPU for ROCm | ||
|
||
$ git clone https://github.com/reger-men/HPL_GPU.git | ||
$ cd HPL-GPU | ||
$ mkdir build && cd build | ||
$ cmake .. | ||
$ make -j | ||
|
||
|
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