From 405605c74be4b75dcf8b3084f7950f1eed508b8e Mon Sep 17 00:00:00 2001 From: dave <dave@dtu.dk> Date: Wed, 3 Aug 2016 13:09:39 +0200 Subject: [PATCH] prepost.Simulations: update test files after PBS changes --- .../dlc01_demos/dlc01_steady_wsp10_s100.p | 143 +++++++++++++----- .../dlc01_demos/dlc01_steady_wsp8_noturb.p | 143 +++++++++++++----- .../dlc01_demos/dlc01_steady_wsp9_noturb.p | 143 +++++++++++++----- 3 files changed, 312 insertions(+), 117 deletions(-) diff --git a/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp10_s100.p b/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp10_s100.p index 6a62ecce..6b7d9ddf 100644 --- a/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp10_s100.p +++ b/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp10_s100.p @@ -3,53 +3,118 @@ #PBS -o ./pbs_out/dlc01_demos/dlc01_steady_wsp10_s100.out ### Standard Error #PBS -e ./pbs_out/dlc01_demos/dlc01_steady_wsp10_s100.err -#PBS -W umask=003 +#PBS -W umask=0003 ### Maximum wallclock time format HOURS:MINUTES:SECONDS #PBS -l walltime=04:00:00 #PBS -l nodes=1:ppn=1 ### Queue name #PBS -q workq -### Create scratch directory and copy data to it -cd $PBS_O_WORKDIR -echo "current working dir (pwd):" -pwd -cp -R ./demo_dlc_remote.zip /scratch/$USER/$PBS_JOBID +# ============================================================================== +if [ -z ${LAUNCH_PBS_MODE+x} ] ; then + ### Create scratch directory and copy data to it + cd $PBS_O_WORKDIR + echo "current working dir (pwd):" + pwd + cp -R ./demo_dlc_remote.zip /scratch/$USER/$PBS_JOBID +fi +# ------------------------------------------------------------------------------ -echo "" -echo "Execute commands on scratch nodes" -cd /scratch/$USER/$PBS_JOBID -pwd -/usr/bin/unzip demo_dlc_remote.zip -mkdir -p htc/dlc01_demos/ -mkdir -p res/dlc01_demos/ -mkdir -p logfiles/dlc01_demos/ -mkdir -p turb/ -cp -R $PBS_O_WORKDIR/htc/dlc01_demos/dlc01_steady_wsp10_s100.htc ./htc/dlc01_demos/ -cp -R $PBS_O_WORKDIR/../turb/turb_s100_10ms*.bin turb/ -time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp10_s100.htc & -### wait for jobs to finish -wait -echo "" -echo "Copy back from scratch directory" -cd /scratch/$USER/$PBS_JOBID -mkdir -p $PBS_O_WORKDIR/res/dlc01_demos/ -mkdir -p $PBS_O_WORKDIR/logfiles/dlc01_demos/ -mkdir -p $PBS_O_WORKDIR/animation/ -mkdir -p $PBS_O_WORKDIR/../turb/ -cp -R res/dlc01_demos/. $PBS_O_WORKDIR/res/dlc01_demos/. -cp -R logfiles/dlc01_demos/. $PBS_O_WORKDIR/logfiles/dlc01_demos/. -cp -R animation/. $PBS_O_WORKDIR/animation/. +# ------------------------------------------------------------ +# evaluates to true if LAUNCH_PBS_MODE is NOT set +if [ -z ${LAUNCH_PBS_MODE+x} ] ; then + echo + echo 'Execute commands on scratch nodes' + cd /scratch/$USER/$PBS_JOBID + # create unique dir for each CPU + mkdir "1"; cd "1" + pwd + /usr/bin/unzip ../demo_dlc_remote.zip + mkdir -p htc/dlc01_demos/ + mkdir -p res/dlc01_demos/ + mkdir -p logfiles/dlc01_demos/ + mkdir -p turb/ + cp -R $PBS_O_WORKDIR/htc/dlc01_demos/dlc01_steady_wsp10_s100.htc ./htc/dlc01_demos/ + cp -R $PBS_O_WORKDIR/../turb/turb_s100_10ms*.bin turb/ + # ------------------------------------------------------------ +else + # with find+xargs we first browse to CPU folder + cd "$CPU_NR" +fi +# ------------------------------------------------------------ echo "" -echo "COPY BACK TURB IF APPLICABLE" -cd turb/ -for i in `ls *.bin`; do if [ -e $PBS_O_WORKDIR/../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i $PBS_O_WORKDIR/../turb/; fi; done -cd /scratch/$USER/$PBS_JOBID -echo "END COPY BACK TURB" -echo "" +# evaluates to true if LAUNCH_PBS_MODE is NOT set +if [ -z ${LAUNCH_PBS_MODE+x} ] ; then + echo "execute HAWC2, fork to background" + time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp10_s100.htc & + wait + echo "POST-PROCESSING" + source activate wetb_py3 + python -c "from wetb.prepost import statsdel; statsdel.logcheck('logfiles/dlc01_demos/dlc01_steady_wsp10_s100.log')" + python -c "from wetb.prepost import statsdel; statsdel.calc('res/dlc01_demos/dlc01_steady_wsp10_s100', no_bins=46, m=[3, 4, 6, 8, 10, 12], neq=20.0, i0=0, i1=None, ftype='.csv')" + source deactivate +else + echo "execute HAWC2, do not fork and wait" + time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp10_s100.htc + echo "POST-PROCESSING" + python -c "from wetb.prepost import statsdel; statsdel.logcheck('logfiles/dlc01_demos/dlc01_steady_wsp10_s100.log')" + python -c "from wetb.prepost import statsdel; statsdel.calc('res/dlc01_demos/dlc01_steady_wsp10_s100', no_bins=46, m=[3, 4, 6, 8, 10, 12], neq=20.0, i0=0, i1=None, ftype='.csv')" +fi -echo "" -echo "following files are on the node (find .):" -find . + +# ============================================================================== +### Epilogue +# evaluates to true if LAUNCH_PBS_MODE is NOT set +if [ -z ${LAUNCH_PBS_MODE+x} ] ; then + ### wait for jobs to finish + wait + echo "" +# ------------------------------------------------------------------------------ + echo "Copy back from scratch directory" + cd /scratch/$USER/$PBS_JOBID/1/ + mkdir -p $PBS_O_WORKDIR/res/dlc01_demos/ + mkdir -p $PBS_O_WORKDIR/logfiles/dlc01_demos/ + mkdir -p $PBS_O_WORKDIR/animation/ + mkdir -p $PBS_O_WORKDIR/../turb/ + cp -R res/dlc01_demos/. $PBS_O_WORKDIR/res/dlc01_demos/. + cp -R logfiles/dlc01_demos/. $PBS_O_WORKDIR/logfiles/dlc01_demos/. + cp -R animation/. $PBS_O_WORKDIR/animation/. + + echo "" + echo "COPY BACK TURB IF APPLICABLE" + cd turb/ + for i in `ls *.bin`; do if [ -e $PBS_O_WORKDIR/../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i $PBS_O_WORKDIR/../turb/; fi; done + cd /scratch/$USER/$PBS_JOBID/1/ + echo "END COPY BACK TURB" + echo "" + + echo "COPYBACK [copyback_files]/[copyback_frename]" + echo "END COPYBACK" + echo "" + + echo "" + echo "following files are on node/cpu 1 (find .):" + find . +# ------------------------------------------------------------------------------ +else + cd /scratch/$USER/$PBS_JOBID/$CPU_NR/ + rsync -a --remove-source-files res/dlc01_demos/. ../remote/res/dlc01_demos/. + rsync -a --remove-source-files logfiles/dlc01_demos/. ../remote/logfiles/dlc01_demos/. + rsync -a --remove-source-files animation/. ../remote/animation/. + + echo "" + echo "COPY BACK TURB IF APPLICABLE" + cd turb/ + for i in `ls *.bin`; do if [ -e ../../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i ../../turb/; fi; done + cd /scratch/$USER/$PBS_JOBID/$CPU_NR/ + echo "END COPY BACK TURB" + echo "" + + echo "COPYBACK [copyback_files]/[copyback_frename]" + echo "END COPYBACK" + echo "" + +# ------------------------------------------------------------------------------ +fi exit diff --git a/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp8_noturb.p b/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp8_noturb.p index 640e5c20..0d1a6ee8 100644 --- a/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp8_noturb.p +++ b/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp8_noturb.p @@ -3,53 +3,118 @@ #PBS -o ./pbs_out/dlc01_demos/dlc01_steady_wsp8_noturb.out ### Standard Error #PBS -e ./pbs_out/dlc01_demos/dlc01_steady_wsp8_noturb.err -#PBS -W umask=003 +#PBS -W umask=0003 ### Maximum wallclock time format HOURS:MINUTES:SECONDS #PBS -l walltime=04:00:00 #PBS -l nodes=1:ppn=1 ### Queue name #PBS -q workq -### Create scratch directory and copy data to it -cd $PBS_O_WORKDIR -echo "current working dir (pwd):" -pwd -cp -R ./demo_dlc_remote.zip /scratch/$USER/$PBS_JOBID +# ============================================================================== +if [ -z ${LAUNCH_PBS_MODE+x} ] ; then + ### Create scratch directory and copy data to it + cd $PBS_O_WORKDIR + echo "current working dir (pwd):" + pwd + cp -R ./demo_dlc_remote.zip /scratch/$USER/$PBS_JOBID +fi +# ------------------------------------------------------------------------------ -echo "" -echo "Execute commands on scratch nodes" -cd /scratch/$USER/$PBS_JOBID -pwd -/usr/bin/unzip demo_dlc_remote.zip -mkdir -p htc/dlc01_demos/ -mkdir -p res/dlc01_demos/ -mkdir -p logfiles/dlc01_demos/ -mkdir -p turb/ -cp -R $PBS_O_WORKDIR/htc/dlc01_demos/dlc01_steady_wsp8_noturb.htc ./htc/dlc01_demos/ -cp -R $PBS_O_WORKDIR/../turb/none*.bin turb/ -time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp8_noturb.htc & -### wait for jobs to finish -wait -echo "" -echo "Copy back from scratch directory" -cd /scratch/$USER/$PBS_JOBID -mkdir -p $PBS_O_WORKDIR/res/dlc01_demos/ -mkdir -p $PBS_O_WORKDIR/logfiles/dlc01_demos/ -mkdir -p $PBS_O_WORKDIR/animation/ -mkdir -p $PBS_O_WORKDIR/../turb/ -cp -R res/dlc01_demos/. $PBS_O_WORKDIR/res/dlc01_demos/. -cp -R logfiles/dlc01_demos/. $PBS_O_WORKDIR/logfiles/dlc01_demos/. -cp -R animation/. $PBS_O_WORKDIR/animation/. +# ------------------------------------------------------------ +# evaluates to true if LAUNCH_PBS_MODE is NOT set +if [ -z ${LAUNCH_PBS_MODE+x} ] ; then + echo + echo 'Execute commands on scratch nodes' + cd /scratch/$USER/$PBS_JOBID + # create unique dir for each CPU + mkdir "1"; cd "1" + pwd + /usr/bin/unzip ../demo_dlc_remote.zip + mkdir -p htc/dlc01_demos/ + mkdir -p res/dlc01_demos/ + mkdir -p logfiles/dlc01_demos/ + mkdir -p turb/ + cp -R $PBS_O_WORKDIR/htc/dlc01_demos/dlc01_steady_wsp8_noturb.htc ./htc/dlc01_demos/ + cp -R $PBS_O_WORKDIR/../turb/none*.bin turb/ + # ------------------------------------------------------------ +else + # with find+xargs we first browse to CPU folder + cd "$CPU_NR" +fi +# ------------------------------------------------------------ echo "" -echo "COPY BACK TURB IF APPLICABLE" -cd turb/ -for i in `ls *.bin`; do if [ -e $PBS_O_WORKDIR/../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i $PBS_O_WORKDIR/../turb/; fi; done -cd /scratch/$USER/$PBS_JOBID -echo "END COPY BACK TURB" -echo "" +# evaluates to true if LAUNCH_PBS_MODE is NOT set +if [ -z ${LAUNCH_PBS_MODE+x} ] ; then + echo "execute HAWC2, fork to background" + time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp8_noturb.htc & + wait + echo "POST-PROCESSING" + source activate wetb_py3 + python -c "from wetb.prepost import statsdel; statsdel.logcheck('logfiles/dlc01_demos/dlc01_steady_wsp8_noturb.log')" + python -c "from wetb.prepost import statsdel; statsdel.calc('res/dlc01_demos/dlc01_steady_wsp8_noturb', no_bins=46, m=[3, 4, 6, 8, 10, 12], neq=20.0, i0=0, i1=None, ftype='.csv')" + source deactivate +else + echo "execute HAWC2, do not fork and wait" + time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp8_noturb.htc + echo "POST-PROCESSING" + python -c "from wetb.prepost import statsdel; statsdel.logcheck('logfiles/dlc01_demos/dlc01_steady_wsp8_noturb.log')" + python -c "from wetb.prepost import statsdel; statsdel.calc('res/dlc01_demos/dlc01_steady_wsp8_noturb', no_bins=46, m=[3, 4, 6, 8, 10, 12], neq=20.0, i0=0, i1=None, ftype='.csv')" +fi -echo "" -echo "following files are on the node (find .):" -find . + +# ============================================================================== +### Epilogue +# evaluates to true if LAUNCH_PBS_MODE is NOT set +if [ -z ${LAUNCH_PBS_MODE+x} ] ; then + ### wait for jobs to finish + wait + echo "" +# ------------------------------------------------------------------------------ + echo "Copy back from scratch directory" + cd /scratch/$USER/$PBS_JOBID/1/ + mkdir -p $PBS_O_WORKDIR/res/dlc01_demos/ + mkdir -p $PBS_O_WORKDIR/logfiles/dlc01_demos/ + mkdir -p $PBS_O_WORKDIR/animation/ + mkdir -p $PBS_O_WORKDIR/../turb/ + cp -R res/dlc01_demos/. $PBS_O_WORKDIR/res/dlc01_demos/. + cp -R logfiles/dlc01_demos/. $PBS_O_WORKDIR/logfiles/dlc01_demos/. + cp -R animation/. $PBS_O_WORKDIR/animation/. + + echo "" + echo "COPY BACK TURB IF APPLICABLE" + cd turb/ + for i in `ls *.bin`; do if [ -e $PBS_O_WORKDIR/../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i $PBS_O_WORKDIR/../turb/; fi; done + cd /scratch/$USER/$PBS_JOBID/1/ + echo "END COPY BACK TURB" + echo "" + + echo "COPYBACK [copyback_files]/[copyback_frename]" + echo "END COPYBACK" + echo "" + + echo "" + echo "following files are on node/cpu 1 (find .):" + find . +# ------------------------------------------------------------------------------ +else + cd /scratch/$USER/$PBS_JOBID/$CPU_NR/ + rsync -a --remove-source-files res/dlc01_demos/. ../remote/res/dlc01_demos/. + rsync -a --remove-source-files logfiles/dlc01_demos/. ../remote/logfiles/dlc01_demos/. + rsync -a --remove-source-files animation/. ../remote/animation/. + + echo "" + echo "COPY BACK TURB IF APPLICABLE" + cd turb/ + for i in `ls *.bin`; do if [ -e ../../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i ../../turb/; fi; done + cd /scratch/$USER/$PBS_JOBID/$CPU_NR/ + echo "END COPY BACK TURB" + echo "" + + echo "COPYBACK [copyback_files]/[copyback_frename]" + echo "END COPYBACK" + echo "" + +# ------------------------------------------------------------------------------ +fi exit diff --git a/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp9_noturb.p b/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp9_noturb.p index a9d5ef52..ec0296f1 100644 --- a/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp9_noturb.p +++ b/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp9_noturb.p @@ -3,53 +3,118 @@ #PBS -o ./pbs_out/dlc01_demos/dlc01_steady_wsp9_noturb.out ### Standard Error #PBS -e ./pbs_out/dlc01_demos/dlc01_steady_wsp9_noturb.err -#PBS -W umask=003 +#PBS -W umask=0003 ### Maximum wallclock time format HOURS:MINUTES:SECONDS #PBS -l walltime=04:00:00 #PBS -l nodes=1:ppn=1 ### Queue name #PBS -q workq -### Create scratch directory and copy data to it -cd $PBS_O_WORKDIR -echo "current working dir (pwd):" -pwd -cp -R ./demo_dlc_remote.zip /scratch/$USER/$PBS_JOBID +# ============================================================================== +if [ -z ${LAUNCH_PBS_MODE+x} ] ; then + ### Create scratch directory and copy data to it + cd $PBS_O_WORKDIR + echo "current working dir (pwd):" + pwd + cp -R ./demo_dlc_remote.zip /scratch/$USER/$PBS_JOBID +fi +# ------------------------------------------------------------------------------ -echo "" -echo "Execute commands on scratch nodes" -cd /scratch/$USER/$PBS_JOBID -pwd -/usr/bin/unzip demo_dlc_remote.zip -mkdir -p htc/dlc01_demos/ -mkdir -p res/dlc01_demos/ -mkdir -p logfiles/dlc01_demos/ -mkdir -p turb/ -cp -R $PBS_O_WORKDIR/htc/dlc01_demos/dlc01_steady_wsp9_noturb.htc ./htc/dlc01_demos/ -cp -R $PBS_O_WORKDIR/../turb/none*.bin turb/ -time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp9_noturb.htc & -### wait for jobs to finish -wait -echo "" -echo "Copy back from scratch directory" -cd /scratch/$USER/$PBS_JOBID -mkdir -p $PBS_O_WORKDIR/res/dlc01_demos/ -mkdir -p $PBS_O_WORKDIR/logfiles/dlc01_demos/ -mkdir -p $PBS_O_WORKDIR/animation/ -mkdir -p $PBS_O_WORKDIR/../turb/ -cp -R res/dlc01_demos/. $PBS_O_WORKDIR/res/dlc01_demos/. -cp -R logfiles/dlc01_demos/. $PBS_O_WORKDIR/logfiles/dlc01_demos/. -cp -R animation/. $PBS_O_WORKDIR/animation/. +# ------------------------------------------------------------ +# evaluates to true if LAUNCH_PBS_MODE is NOT set +if [ -z ${LAUNCH_PBS_MODE+x} ] ; then + echo + echo 'Execute commands on scratch nodes' + cd /scratch/$USER/$PBS_JOBID + # create unique dir for each CPU + mkdir "1"; cd "1" + pwd + /usr/bin/unzip ../demo_dlc_remote.zip + mkdir -p htc/dlc01_demos/ + mkdir -p res/dlc01_demos/ + mkdir -p logfiles/dlc01_demos/ + mkdir -p turb/ + cp -R $PBS_O_WORKDIR/htc/dlc01_demos/dlc01_steady_wsp9_noturb.htc ./htc/dlc01_demos/ + cp -R $PBS_O_WORKDIR/../turb/none*.bin turb/ + # ------------------------------------------------------------ +else + # with find+xargs we first browse to CPU folder + cd "$CPU_NR" +fi +# ------------------------------------------------------------ echo "" -echo "COPY BACK TURB IF APPLICABLE" -cd turb/ -for i in `ls *.bin`; do if [ -e $PBS_O_WORKDIR/../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i $PBS_O_WORKDIR/../turb/; fi; done -cd /scratch/$USER/$PBS_JOBID -echo "END COPY BACK TURB" -echo "" +# evaluates to true if LAUNCH_PBS_MODE is NOT set +if [ -z ${LAUNCH_PBS_MODE+x} ] ; then + echo "execute HAWC2, fork to background" + time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp9_noturb.htc & + wait + echo "POST-PROCESSING" + source activate wetb_py3 + python -c "from wetb.prepost import statsdel; statsdel.logcheck('logfiles/dlc01_demos/dlc01_steady_wsp9_noturb.log')" + python -c "from wetb.prepost import statsdel; statsdel.calc('res/dlc01_demos/dlc01_steady_wsp9_noturb', no_bins=46, m=[3, 4, 6, 8, 10, 12], neq=20.0, i0=0, i1=None, ftype='.csv')" + source deactivate +else + echo "execute HAWC2, do not fork and wait" + time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp9_noturb.htc + echo "POST-PROCESSING" + python -c "from wetb.prepost import statsdel; statsdel.logcheck('logfiles/dlc01_demos/dlc01_steady_wsp9_noturb.log')" + python -c "from wetb.prepost import statsdel; statsdel.calc('res/dlc01_demos/dlc01_steady_wsp9_noturb', no_bins=46, m=[3, 4, 6, 8, 10, 12], neq=20.0, i0=0, i1=None, ftype='.csv')" +fi -echo "" -echo "following files are on the node (find .):" -find . + +# ============================================================================== +### Epilogue +# evaluates to true if LAUNCH_PBS_MODE is NOT set +if [ -z ${LAUNCH_PBS_MODE+x} ] ; then + ### wait for jobs to finish + wait + echo "" +# ------------------------------------------------------------------------------ + echo "Copy back from scratch directory" + cd /scratch/$USER/$PBS_JOBID/1/ + mkdir -p $PBS_O_WORKDIR/res/dlc01_demos/ + mkdir -p $PBS_O_WORKDIR/logfiles/dlc01_demos/ + mkdir -p $PBS_O_WORKDIR/animation/ + mkdir -p $PBS_O_WORKDIR/../turb/ + cp -R res/dlc01_demos/. $PBS_O_WORKDIR/res/dlc01_demos/. + cp -R logfiles/dlc01_demos/. $PBS_O_WORKDIR/logfiles/dlc01_demos/. + cp -R animation/. $PBS_O_WORKDIR/animation/. + + echo "" + echo "COPY BACK TURB IF APPLICABLE" + cd turb/ + for i in `ls *.bin`; do if [ -e $PBS_O_WORKDIR/../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i $PBS_O_WORKDIR/../turb/; fi; done + cd /scratch/$USER/$PBS_JOBID/1/ + echo "END COPY BACK TURB" + echo "" + + echo "COPYBACK [copyback_files]/[copyback_frename]" + echo "END COPYBACK" + echo "" + + echo "" + echo "following files are on node/cpu 1 (find .):" + find . +# ------------------------------------------------------------------------------ +else + cd /scratch/$USER/$PBS_JOBID/$CPU_NR/ + rsync -a --remove-source-files res/dlc01_demos/. ../remote/res/dlc01_demos/. + rsync -a --remove-source-files logfiles/dlc01_demos/. ../remote/logfiles/dlc01_demos/. + rsync -a --remove-source-files animation/. ../remote/animation/. + + echo "" + echo "COPY BACK TURB IF APPLICABLE" + cd turb/ + for i in `ls *.bin`; do if [ -e ../../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i ../../turb/; fi; done + cd /scratch/$USER/$PBS_JOBID/$CPU_NR/ + echo "END COPY BACK TURB" + echo "" + + echo "COPYBACK [copyback_files]/[copyback_frename]" + echo "END COPYBACK" + echo "" + +# ------------------------------------------------------------------------------ +fi exit -- GitLab