Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hpc-compendium
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ZIH
hpcsupport
hpc-compendium
Commits
6bf6b60d
Commit
6bf6b60d
authored
2 years ago
by
Martin Schroschk
Browse files
Options
Downloads
Patches
Plain Diff
Encapsulate variables in curly braces
parent
cab8f757
No related branches found
No related tags found
2 merge requests
!679
Automated merge from preview to main
,
!659
Check ws allocation
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md
+6
-6
6 additions, 6 deletions
doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md
with
6 additions
and
6 deletions
doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md
+
6
−
6
View file @
6bf6b60d
...
@@ -244,8 +244,8 @@ calling the actual software to do your computation).
...
@@ -244,8 +244,8 @@ calling the actual software to do your computation).
test ! -f "${INPUTFILE}" && echo "Error: Could not find the input file ${INPUTFILE}" && exit 1
test ! -f "${INPUTFILE}" && echo "Error: Could not find the input file ${INPUTFILE}" && exit 1
COMPUTE_DIR=computation_$SLURM_JOB_ID
COMPUTE_DIR=computation_$SLURM_JOB_ID
export WORKSPACE_DIR=$(ws_allocate -F ssd $COMPUTE_DIR 7)
export WORKSPACE_DIR=$(ws_allocate -F ssd $
{
COMPUTE_DIR
}
7)
echo $WORKSPACE_DIR
echo $
{
WORKSPACE_DIR
}
# Check allocation.
# Check allocation.
test -z "${WORKSPACE_DIR}" && echo "Error: Cannot allocate workspace ${COMPUTE_DIR}" && exit 1
test -z "${WORKSPACE_DIR}" && echo "Error: Cannot allocate workspace ${COMPUTE_DIR}" && exit 1
...
@@ -258,12 +258,12 @@ calling the actual software to do your computation).
...
@@ -258,12 +258,12 @@ calling the actual software to do your computation).
# Compress results with bzip2 (which includes CRC32 Checksums)
# Compress results with bzip2 (which includes CRC32 Checksums)
bzip2 --compress --stdout -4 "${WORKSPACE_DIR}" > $HOME/gaussian_job-$SLURM_JOB_ID.bz2
bzip2 --compress --stdout -4 "${WORKSPACE_DIR}" > $HOME/gaussian_job-$SLURM_JOB_ID.bz2
RETURN_CODE=$?
RETURN_CODE=$?
COMPRESSION_SUCCESS="$(if test $RETURN_CODE -eq 0; then echo 'TRUE'; else echo 'FALSE'; fi)"
COMPRESSION_SUCCESS="$(if test $
{
RETURN_CODE
}
-eq 0; then echo 'TRUE'; else echo 'FALSE'; fi)"
if [ "TRUE" = $COMPRESSION_SUCCESS ]; then
if [ "TRUE" = $
{
COMPRESSION_SUCCESS
}
]; then
test -d $WORKSPACE_DIR && rm -rf $WORKSPACE_DIR/*
test -d $
{
WORKSPACE_DIR
}
&& rm -rf $
{
WORKSPACE_DIR
}
/*
# Reduces grace period to 1 day!
# Reduces grace period to 1 day!
ws_release -F ssd $COMPUTE_DIR
ws_release -F ssd $
{
COMPUTE_DIR
}
else
else
echo "Error with compression and writing of results";
echo "Error with compression and writing of results";
echo "Please check the folder \"${WORKSPACE_DIR}\" for any partial(?) results.";
echo "Please check the folder \"${WORKSPACE_DIR}\" for any partial(?) results.";
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment