d08ea96ea3
- Only build for the machine we are on - Saves CI time
33 líneas
684 B
Bash
Archivo Ejecutable
33 líneas
684 B
Bash
Archivo Ejecutable
#!/bin/bash
|
|
# Copyright (c) 2024 Advanced Micro Devices, Inc. All rights reserved.
|
|
set -e
|
|
|
|
if [ -z $1 ]
|
|
then
|
|
install_path=~/rocshmem
|
|
else
|
|
install_path=$1
|
|
fi
|
|
|
|
src_path=$(dirname "$(realpath $0)")/../../
|
|
|
|
cmake \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=$install_path \
|
|
-DCMAKE_VERBOSE_MAKEFILE=OFF \
|
|
-DDEBUG=OFF \
|
|
-DPROFILE=OFF \
|
|
-DUSE_GPU_IB=OFF \
|
|
-DUSE_RO=OFF \
|
|
-DUSE_DC=OFF \
|
|
-DUSE_IPC=ON \
|
|
-DUSE_COHERENT_HEAP=ON \
|
|
-DUSE_THREADS=OFF \
|
|
-DUSE_WF_COAL=OFF \
|
|
-DUSE_SINGLE_NODE=ON \
|
|
-DUSE_HOST_SIDE_HDP_FLUSH=OFF \
|
|
-DBUILD_LOCAL_GPU_TARGET_ONLY=ON \
|
|
$src_path
|
|
cmake --build . --parallel 8
|
|
cmake --install .
|