X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=reports%2Frun_accu_cl.sh;h=04f15193930552115fca32c754f3e75427616654;hb=8dc8da95179d0f0654b5cb9e189117197aec7c55;hp=d1d8e376cd6fc922807a5a8ecd6b33d154357cf2;hpb=1d014a8640a33f16f0d21244a1419134e8553910;p=morpheus.git diff --git a/reports/run_accu_cl.sh b/reports/run_accu_cl.sh index d1d8e37..04f1519 100644 --- a/reports/run_accu_cl.sh +++ b/reports/run_accu_cl.sh @@ -1,19 +1,33 @@ #!/bin/bash -#PBS -l nodes=1:ppn=15,mem=8gb,pmem=512mb -#PBS -j oe +# Lancement: qsub -o .output -j y run_accu_cl.sh -#PBS -o .output +#$ -N morpheus +#$ -wd /workdir2/auder/morpheus/reports +#$ -m abes +#$ -M benjamin@auder.net +#$ -pe make 10 +#$ -l h_vmem=1G rm -f .output -WORKDIR=/workdir2/auder/morpheus/reports -cd $WORKDIR +module load R/3.6.1 -module load R +N=100 +n=1e5 +nc=10 -# arg --vanilla maybe possible on cluster -for d in 2 5 10 20; do +for d in 2 5 10; 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,0"; 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=$N n=$n nc=$nc d=$d link=$link out_$n$link$d 2>&1 +# done +# done +#done