Transfer files from RAD repository

This commit is contained in:
Brandon Potter
2024-07-01 09:57:08 -05:00
rodzic a30da178c1
commit ea8f264a11
382 zmienionych plików z 67034 dodań i 1 usunięć
+26
Wyświetl plik
@@ -0,0 +1,26 @@
#!/bin/bash
# Copyright (c) 2024 Advanced Micro Devices, Inc. All rights reserved.
if [ -z $1 ]
then
install_path=~/rocshmem
else
install_path=$1
fi
src_path=$(dirname "$(realpath $0)")/../../
cmake \
-DCMAKE_BUILD_TYPE=Debug \
-DCMAKE_INSTALL_PREFIX=$install_path \
-DCMAKE_VERBOSE_MAKEFILE=ON \
-DDEBUG=OFF \
-DPROFILE=OFF \
-DUSE_GPU_IB=ON \
-DUSE_DC=OFF \
-DUSE_IPC=OFF \
-DUSE_THREADS=ON \
-DUSE_WF_COAL=OFF \
$src_path
cmake --build . --parallel 8
cmake --install .