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

Remove ssd filesystem stuff

parent 9d055f50
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
......@@ -220,7 +220,7 @@ Options:
```console
marie@login$ ws_allocate --filesystem walrus test-workspace 99
Info: creating workspace.
/lustre/ssd/ws/marie-test-workspace
/data/walrus/ws/marie-test-workspace
remaining extensions : 2
remaining time in days: 99
```
......@@ -235,7 +235,7 @@ Options:
```console
marie@login$ ws_allocate --reminder 7 --mailaddress marie@tu-dresden.de test-workspace 99
Info: creating workspace.
/horse/ws/marie-test-workspace
/data/horse/ws/marie-test-workspace
remaining extensions : 10
remaining time in days: 99
```
......@@ -470,7 +470,7 @@ the following example (which works [for the program g16](../software/nanoscale_s
## The optional constraint for the filesystem feature depends
## on the filesystem on which you want to use a workspace.
## Documentation here https://compendium.hpc.tu-dresden.de/jobs_and_resources/slurm/#filesystem-features
#SBATCH --constraint=fs_lustre_ssd
#SBATCH --constraint=local_disk
#SBATCH --cpus-per-task=24
# Load the software you need here
......@@ -487,7 +487,7 @@ the following example (which works [for the program g16](../software/nanoscale_s
# Allocate workspace for this job. Adjust time span to time limit of the job (--duration).
WSNAME=computation_$SLURM_JOB_ID
export WSDDIR=$(ws_allocate --filesystem ssd --name ${WSNAME} --duration 2)
export WSDDIR=$(ws_allocate --filesystem horse --name ${WSNAME} --duration 2)
echo ${WSDIR}
# Check allocation
......@@ -516,7 +516,7 @@ the following example (which works [for the program g16](../software/nanoscale_s
if [ "TRUE" = ${COMPRESSION_SUCCESS} ]; then
test -d ${WSDIR} && rm -rf ${WSDIR}/*
# Reduces grace period to 1 day!
ws_release -F ssd ${WSNAME}
ws_release -F horse ${WSNAME}
else
echo "Error with compression and writing of results"
echo "Please check the folder \"${WSDIR}\" 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