X-Git-Url: https://git.auder.net/doc/screen_timer.png?a=blobdiff_plain;f=reports%2Frun_accu_cl.sh;fp=reports%2Frun_accu_cl.sh;h=11bb5e0251e6875a014b871b57f62ca9bf4b9f88;hb=476a79d4b332d378716e320fdfd95fa3e1d7be9f;hp=0000000000000000000000000000000000000000;hpb=0527116e18cd2ab53091de5c82d0d1d7356af4dc;p=morpheus.git diff --git a/reports/run_accu_cl.sh b/reports/run_accu_cl.sh new file mode 100644 index 0000000..11bb5e0 --- /dev/null +++ b/reports/run_accu_cl.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +#PBS -l nodes=1:ppn=15,mem=8gb,pmem=512mb +#PBS -j oe + +#PBS -o .output +rm -f .output + +WORKDIR=/workdir2/auder/morpheus/reports +cd $WORKDIR + +module load R + +# arg --vanilla maybe possible on cluster +for d in 10 20; do + for link in "logit" "probit"; do + R --slave --args N=1000 n=1e5 nc=15 d=$d link=$link out$d$link 2>&1 + done +done