X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=reports%2Frun_accu_cl.sh;fp=reports%2Frun_accu_cl.sh;h=d1d8e376cd6fc922807a5a8ecd6b33d154357cf2;hb=1d014a8640a33f16f0d21244a1419134e8553910;hp=0000000000000000000000000000000000000000;hpb=1b8eb253d7c51c578f64f963c71ab4b77703f2bc;p=morpheus.git diff --git a/reports/run_accu_cl.sh b/reports/run_accu_cl.sh new file mode 100644 index 0000000..d1d8e37 --- /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 2 5 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