X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=reports%2Frun_accu_cl.sh;h=0cd877b148468a60c0d5f2e64f71c5b4332bf49d;hb=b46623addc9e63019aa1df1dd2de800b48fdd609;hp=50b2844edeecc4155a7ce01371bd91f1cb1ee8be;hpb=9007ccc114c127211639e7c5b82495bc39803eb0;p=morpheus.git diff --git a/reports/run_accu_cl.sh b/reports/run_accu_cl.sh index 50b2844..0cd877b 100644 --- a/reports/run_accu_cl.sh +++ b/reports/run_accu_cl.sh @@ -1,27 +1,35 @@ #!/bin/bash -#PBS -l nodes=1:ppn=15,mem=8gb,pmem=512mb -#PBS -j oe - -#PBS -o .output +#$ -N morpheus +#$ -m abes +#$ -M benjamin@auder.net +#$ -pe make 50 +#$ -l h_vmem=1G +#$ -j y +#$ -o .output rm -f .output WORKDIR=/workdir2/auder/morpheus/reports cd $WORKDIR -module load R +module load R/3.6.1 + +N=10 +n=1e5 +nc=50 -# 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 + for weights in "1,1,1" "6,3,1"; do + R --slave --args N=$N n=$n nc=$nc d=$d link=$link weights=$weights out_${n}_${link}_${d}_${weights} 2>&1 + done done done #for d in 2 5; do # for n in 5000 10000 100000 500000 1000000; do # for link in "logit" "probit"; do -# R --slave --args N=1000 n=$n nc=64 d=$d link=$link out_$n$link$d 2>&1 +# R --slave --args N=$N n=$n nc=$nc d=$d link=$link out_$n$link$d 2>&1 # done # done #done