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

Update examples to horse filesystem

- Remove ssd filesystem
parent 5dc7d773
No related branches found
No related tags found
2 merge requests!1138Automated merge from preview to main,!1134Review documentation w.r.t. filesystems and hardware
......@@ -122,7 +122,7 @@ However hereafter we have an example on how that might look like for Gaussian:
#SBATCH --time=36:00:00
#SBATCH --nodes=2
#SBATCH --ntasks=2
#SBATCH --constraint=fs_lustre_ssd
#SBATCH --constraint=local_disk
#SBATCH --cpus-per-task=24
#SBATCH --mem-per-cpu 2050
# only 2050 MB RAM for haswell, as Gaussian somehow crashes if we try using the full 2541 of it
......@@ -139,7 +139,7 @@ However hereafter we have an example on how that might look like for Gaussian:
# Allocate workspace. Adjust time span to time limit of the job (-d <N>).
COMPUTE_DIR=gaussian_${SLURM_JOB_ID}
export GAUSS_SCRDIR=$(ws_allocate -F ssd -n ${COMPUTE_DIR} -d 7)
export GAUSS_SCRDIR=$(ws_allocate --filesystem horse --name ${COMPUTE_DIR} --duration 7)
echo ${GAUSS_SCRDIR}
# Check allocation.
......@@ -159,7 +159,7 @@ However hereafter we have an example on how that might look like for Gaussian:
if [ "TRUE" = ${COMPRESSION_SUCCESS} ]; then
test -d ${GAUSS_SCRDIR} && rm -rf ${GAUSS_SCRDIR}/*
# Reduces grace period to 1 day!
ws_release -F ssd ${COMPUTE_DIR}
ws_release -F horse ${COMPUTE_DIR}
else
echo "Error with compression and writing of results"
echo "Please check the folder \"${GAUSS_SRCDIR}\" for any partial(?) results."
......
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