Files
circ/scripts/build_kahip.zsh
Edward Chen bb8e6e3673 KaHIP and kahypar binaries for MPC backend (#147)
- Upgraded ci pipeline to [v3](https://github.com/actions/cache/blob/main/README.md)
- Included installation and build scripts  for KaHIP and kahypar in driver.py
- Used absolute paths for caching in ci pipeline (relative paths don't work). 

Average ci time brought down from 15 minutes to 8 minutes!
2023-02-27 12:31:35 -05:00

8 lines
208 B
Bash
Executable File

#!/usr/bin/env zsh
if [[ ! -z ${KAHIP_SOURCE} ]]; then
cd ${KAHIP_SOURCE}
./compile_withcmake.sh -DCMAKE_BUILD_TYPE=Release -DPARHIP=off
else
echo "Missing KAHIP_SOURCE environment variable."
fi