-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #67 from glotzerlab/fix-deadlock
Fix deadlock and message file retention on Frontier.
- Loading branch information
Showing
9 changed files
with
135 additions
and
98 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Tips for running on OLCF Frontier | ||
|
||
# Recommended configuration | ||
|
||
``` | ||
max_cores_sim: 56 | ||
max_cores_submission: 7168 | ||
max_gpus_submission: 256 | ||
max_walltime: 2 | ||
enable_llvm: false | ||
enable_gpu: true | ||
``` | ||
|
||
## Recommended template | ||
|
||
``` | ||
{% extends "frontier.sh" %} | ||
{% block header %} | ||
{{- super () -}} | ||
#SBATCH -C nvme | ||
{% endblock header %} | ||
{% block custom_content %} | ||
echo "Loading software environment." | ||
export GLOTZERLAB_SOFTWARE_ROOT=/mnt/bb/${USER}/software | ||
time srun --ntasks-per-node 1 mkdir ${GLOTZERLAB_SOFTWARE_ROOT} | ||
time srun --ntasks-per-node 1 tar --directory ${GLOTZERLAB_SOFTWARE_ROOT} -xpf ${MEMBERWORK}/mat110/software.tar | ||
source ${GLOTZERLAB_SOFTWARE_ROOT}/variables.sh | ||
{% endblock custom_content %} | ||
{% block body %} | ||
{{- super () -}} | ||
echo "Completed job in $SECONDS seconds" | ||
{% endblock body %} | ||
``` |
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
Oops, something went wrong.