Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update environments for releases that use cuda. #1049

Merged
merged 1 commit into from
Apr 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/README
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ source/tools/release.sh &> logs/release-darwin-power9.log &

2. x64 + Volta

salloc -N 1 -p volta-x86 -C cpu_family:broadwell
salloc -N 1 -p volta-x86 -C cpu_family:haswell

3. ARM

Expand Down
2 changes: 1 addition & 1 deletion tools/ats2-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ case $ddir in
unset CPATH
unset LD_LIBRARY_PATH
unset LIBRARY_PATH
run "module load draco/xl2020.11.12-cuda-11.2.0-beta"
run "module load draco/xl2020.08.19-cuda-11.0.2"
run "module list"
export JSM_JSRUN_NO_WARN_OVERSUBSCRIBE=1
}
Expand Down
4 changes: 2 additions & 2 deletions tools/darwin-x86_64-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ case "${ddir:=notset}" in
run "module use --append /projects/draco/Modules"
run "module load draco/x64-gcc930"
if [[ ${SLURM_JOB_PARTITION} =~ "volta-" || ${SLURM_JOB_PARTITION} =~ "gpu" ]]; then
run "module load cuda/11.2-beta"
run "module load cuda/11.0"
fi
run "module list"

Expand All @@ -55,7 +55,7 @@ case "${ddir:=notset}" in
run "module use --append /projects/draco/Modules"
run "module load draco/x64-intel1905"
#if [[ ${SLURM_JOB_PARTITION} =~ "volta-" || ${SLURM_JOB_PARTITION} =~ "gpu" ]]; then
# run "module load cuda/11.2-beta"
# run "module load cuda/11.0"
#fi
run "module list"
MPIEXEC_EXECUTABLE=$(which mpirun)
Expand Down