-
Notifications
You must be signed in to change notification settings - Fork 73
/
build.sh
executable file
·51 lines (45 loc) · 1.15 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/bash
#
# Submit job as (build defaults to Release):
#
# sbatch build.sh
#
# or for a debug build:
#
# sbatch --export=BUILD_TYPE='Debug',ALL build.sh
#
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=1
#SBATCH --cpus-per-task=16
#SBATCH --time=0:30:00
#SBATCH --mem=16GB
#SBATCH --job-name=IPC_build
# Check if the system uses modules
if type "module" > /dev/null 2>&1; then
# Load modules
module purge
module load cgal/intel/4.10b1
module swap boost/intel/1.62.0 boost/intel/1.71.0
module load suitesparse/intel/4.5.4 swig/gnu/3.0.11 ilmbase/intel/2.2.0 \
openexr/intel/2.2.0 openmpi/intel/3.1.4 fftw/intel/3.3.6-pl2 \
glew/intel/2.1.0 lapack/gnu/3.7.0
module swap gcc gcc/9.1.0
module load cmake/intel/3.11.4 mosek/8.1.0.64 tbb/intel/2017u3
module load gurobi/9.0.0
module load gmp/gnu/6.1.2
export CC=${GCC_ROOT}/bin/gcc
export CXX=${GCC_ROOT}/bin/g++
export CX=$CXX
fi
# Run job
if [ -z "${SLURM_SUBMIT_DIR}" ]; then
cd "${SLURM_SUBMIT_DIR}"
fi
mkdir -p build
cd build
if [ -z "${BUILD_TYPE}" ]; then
BUILD_TYPE=Release
fi
echo ${BUILD_TYPE}
cmake -DMAKE_BUILD_TYPE=${BUILD_TYPE} ..
make -j16