Skip to content

Commit

Permalink
update installation scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
FindHao committed Mar 20, 2023
1 parent 14b0c55 commit e121e58
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 10 deletions.
11 changes: 11 additions & 0 deletions bin/build_debug_client.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

export install_path=~/opt/gpupunk
export source_path=~/p/gpupunk
export ENABLE_GPUTRIGGER=1
export REDSHOW_PATH=${install_path}/redshow
export GPUPATCH_PATH=${install_path}/gpu-patch
cd ${source_path}/drcctprof_clients
./build_clean.sh ; ./build_debug.sh ; rm -rf ~/opt/gpupunk/drcctprof-debug
cp -r ./DrCCTProf/build_debug ${install_path}/drcctprof-debug

47 changes: 38 additions & 9 deletions bin/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,73 +4,102 @@ if [ $# -lt 1 ];then
echo "usage: bin/build.sh target_install_path"
exit -1
fi

source_path=$(pwd)
# CUDA_PATH=/usr/local/cuda
install_path=$1

current_path=$(dirname $(readlink -f $0))
# if current_path ends with gpupunk/bin, then source_path is gpupunk
if [[ $current_path =~ .*gpupunk/bin$ ]];then
tmp_path=${current_path%/*}
fi
source_path=${source_path:-$tmp_path}
install_path=${install_path:-~/opt/gpupunk}
if [ ! -d $install_path ]
then
echo "target install path not exist, will create it"
mkdir -p $install_path
fi
CUDA_PATH=${CUDA_PATH:-/usr/local/cuda}
if [ ! -d $CUDA_PATH ]
then
echo "CUDA_PATH not exist"
fi

echo "Your source code path is " $source_path
echo "Your install path is " $install_path
echo "Your cuda path is " $CUDA_PATH


# check if the previous command is successful
function check_status {
if [ $? -ne 0 ];then
echo "GPUPUNK-> $1 failed"
exit -1
fi
}


echo "GPUPUNK-> install dependencies"
cd $install_path
git clone --depth 1 https://github.com/spack/spack.git
export SPACK_ROOT=$(pwd)/spack
source ${SPACK_ROOT}/share/spack/setup-env.sh
spack install [email protected] [email protected]
spack load [email protected] [email protected]
# This is necessary and used when statically compiling redshow.
# mbedtls has to older than 2.28.0
spack install [email protected] [email protected] libs=shared [email protected]
check_status "spack install"
# TODO: find a better solution for those packages' installation
spack load [email protected] [email protected] [email protected]

# Find spack and boost dir
B=$(spack find --path boost | tail -n 1 | cut -d ' ' -f 3)
S=${B%/*}
echo "GPUPUNK-> boost install path is " $B


cd ${source_path}/gpu-patch
make clean
make PREFIX=${install_path}/gpu-patch CUDA_PATH=$CUDA_PATH install -j 4
check_status "gpu-patch install"

cd ${source_path}/redshow
make clean
make PREFIX=${install_path}/redshow BOOST_DIR=$B GPU_PATCH_DIR=${install_path}/gpu-patch DEBUG=1 STATIC_CPP=1 install -j 12 -f Makefile.static
check_status "redshow install"

cd ${source_path}/libmonitor
make clean
./configure --prefix=${install_path}/libmonitor/
make -j 12
make install
check_status "libmonitor install"

cd ${source_path}/gputrigger
rm -rf ${source_path}/gputrigger/build
mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=${install_path}/gputrigger -Dgpu_patch_path=${install_path}/gpu-patch
make -j 16
make install -j 4

check_status "gputrigger install"

export ENABLE_GPUTRIGGER=1
export REDSHOW_PATH=${install_path}/redshow
export GPUPATCH_PATH=${install_path}/gpu-patch
cd ${source_path}/drcctprof_clients
./build_clean.sh ; ./build.sh
cp -r ./DrCCTProf/build ${install_path}/drcctprof
check_status "drcctprof install"

cd ${source_path}/cubin_filter
rm -rf ${source_path}/cubin_filter/build
mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=${install_path}/cubin_filter
make -j 16
make install -j 4
check_status "cubin_filter install"

cd ${source_path}
# cp -rf ./bin ${install_path}/
mkdir ${install_path}/bin
# @FindHao TODO: change to copy before final release
if [ -f ${install_path}/bin/gpupunk ];then
rm ${install_path}/bin/gpupunk
fi
ln -s ${source_path}/bin/gpupunk ${install_path}/bin/gpupunk

2 changes: 1 addition & 1 deletion bin/setgpupunk.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# set cuda enviroment
source ~/setenvs/setcuda11.2.sh
# source ~/setenvs/setcuda11.2.sh
# change to your install path
export GPUPUNK_PATH=/home/yhao24/opt/gpupunk

Expand Down
16 changes: 16 additions & 0 deletions pc.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#! /bin/bash

# **********************************************************
# Copyright (c) 2020-2021 Xuhpclab. All rights reserved.
# Licensed under the MIT License.
# See LICENSE file for more information.
# **********************************************************

((num1=$1));echo $num1
((num2=$2));echo $num2
((num3=$3));echo $num3
((num4=$num1-$num2));echo $num4
((num5=$num3+$num4));echo $num5
#num4=$(([##16]num3));echo $num4
printf '%x\n' $num4
printf '%x\n' $num5

0 comments on commit e121e58

Please sign in to comment.