Skip to content
Snippets Groups Projects
Commit 7f1d62d6 authored by Martin Schroschk's avatar Martin Schroschk
Browse files

Make example collapsable

parent 54c794f3
No related branches found
No related tags found
2 merge requests!679Automated merge from preview to main,!659Check ws allocation
...@@ -117,7 +117,7 @@ We have a general description about ...@@ -117,7 +117,7 @@ We have a general description about
[how to utilize workspaces for your I/O intensive jobs](../data_lifecycle/workspaces.md). [how to utilize workspaces for your I/O intensive jobs](../data_lifecycle/workspaces.md).
However hereafter we have an example on how that might look like for Gaussian: However hereafter we have an example on how that might look like for Gaussian:
!!! example "Using Workspaces with Gaussian" ???+ example "Using workspaces with Gaussian"
``` ```
#!/bin/bash #!/bin/bash
...@@ -146,9 +146,11 @@ However hereafter we have an example on how that might look like for Gaussian: ...@@ -146,9 +146,11 @@ However hereafter we have an example on how that might look like for Gaussian:
# Check allocation. # Check allocation.
test -z "${GAUSS_SCRDIR}" && echo "Error: Cannot allocate workspace ${COMPUTE_DIR}" && exit 1 test -z "${GAUSS_SCRDIR}" && echo "Error: Cannot allocate workspace ${COMPUTE_DIR}" && exit 1
# Change to workspace directory and execute application
cd ${GAUSS_SCRDIR} cd ${GAUSS_SCRDIR}
srun g16 < "${INPUTFILE}" > logfile.log srun g16 < "${INPUTFILE}" > logfile.log
# Save result files into user home
# Compress results with bzip2 (which includes CRC32 Checksums) # Compress results with bzip2 (which includes CRC32 Checksums)
bzip2 --compress --stdout -4 "${GAUSS_SRCDIR}" > ${HOME}/gaussian_job-${SLURM_JOB_ID}.bz2 bzip2 --compress --stdout -4 "${GAUSS_SRCDIR}" > ${HOME}/gaussian_job-${SLURM_JOB_ID}.bz2
RETURN_CODE=$? RETURN_CODE=$?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment