This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
704 additions
and
325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,10 @@ export LD_LIBRARY_PATH=/usr/local/lib:${LD_LIBRARY_PATH} | |
ROOT_DIR=${PWD} | ||
: ${TIMEMORY_BRANCH:="master"} | ||
|
||
#--------------------------------------------------------------------------------------------# | ||
# LIKWID | ||
#--------------------------------------------------------------------------------------------# | ||
|
||
run-verbose cd ${ROOT_DIR} | ||
run-verbose git clone https://github.com/RRZE-HPC/likwid.git | ||
run-verbose cd likwid | ||
|
@@ -31,19 +35,37 @@ ssed -i 's/@install/install/g' Makefile | |
ssed -i 's/@cd/cd/g' Makefile | ||
run-verbose make install -j6 | ||
|
||
#--------------------------------------------------------------------------------------------# | ||
# TAU | ||
#--------------------------------------------------------------------------------------------# | ||
|
||
run-verbose cd ${ROOT_DIR} | ||
run-verbose wget http://tau.uoregon.edu/tau.tgz | ||
run-verbose tar -xzf tau.tgz | ||
run-verbose cd tau-* | ||
export CFLAGS="-O3" | ||
export CPPFLAGS="-O3" | ||
export CFLAGS="-O3 -fPIC" | ||
export CPPFLAGS="-O3 -fPIC" | ||
# run-verbose ./configure -python -prefix=/usr/local -pthread -papi=/usr -mpi -mpiinc=/usr/include/mpich -cuda=/usr/local/cuda | ||
run-verbose ./configure -python -prefix=/usr/local -pthread -papi=/usr -mpi -mpiinc=/usr/include/mpich | ||
run-verbose make -j6 | ||
run-verbose make install -j6 | ||
unset CFLAGS | ||
unset CPPFLAGS | ||
|
||
#--------------------------------------------------------------------------------------------# | ||
# UPC++ | ||
#--------------------------------------------------------------------------------------------# | ||
|
||
run-verbose git clone https://[email protected]/berkeleylab/upcxx.git | ||
run-verbose cd upcxx | ||
export CFLAGS="-fPIC" | ||
export CPPFLAGS="-fPIC" | ||
run-verbose ./install /usr/local | ||
|
||
#--------------------------------------------------------------------------------------------# | ||
# timemory | ||
#--------------------------------------------------------------------------------------------# | ||
|
||
run-verbose cd ${ROOT_DIR} | ||
run-verbose git clone -b ${TIMEMORY_BRANCH} https://github.com/NERSC/timemory.git timemory-source | ||
run-verbose cd timemory-source | ||
|
@@ -56,12 +78,23 @@ run-verbose cmake -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_BUILD_TYPE=Release - | |
run-verbose ninja -j6 | ||
run-verbose ninja install | ||
|
||
run-verbose git clone https://[email protected]/berkeleylab/upcxx.git | ||
run-verbose cd upcxx | ||
export CFLAGS="-fPIC" | ||
export CPPFLAGS="-fPIC" | ||
run-verbose ./install /usr/local | ||
#--------------------------------------------------------------------------------------------# | ||
# tomopy | ||
#--------------------------------------------------------------------------------------------# | ||
|
||
run-verbose cd ${ROOT_DIR} | ||
run-verbose git clone https://github.com/jrmadsen/tomopy.git tomopy | ||
run-verbose cd tomopy | ||
run-verbose git checkout accelerated-redesign | ||
run-verbose conda env create -n tomopy -f envs/linux-36.yml | ||
source activate | ||
run-verbose conda activate tomopy | ||
run-verbose python -m pip install -vvv . | ||
run-verbose conda clean -a -y | ||
|
||
cd ${ROOT_DIR} | ||
#--------------------------------------------------------------------------------------------# | ||
# Cleanup | ||
#--------------------------------------------------------------------------------------------# | ||
|
||
run-verbose cd ${ROOT_DIR} | ||
run-verbose rm -rf ${ROOT_DIR}/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.