thesis version

This commit is contained in:
2021-05-10 18:14:24 +02:00
commit caf2a692f9
281 changed files with 73182 additions and 0 deletions

21
scripts/bench_sk_nr Executable file
View File

@ -0,0 +1,21 @@
#!/bin/bash
n=24
o=20
i=20
root=$(pwd)
source "${root}/scripts/common"
data=$(echo "${root}/data/${in}"|sed "s,^$(pwd)/,,")
cc_options+="-DDATA_FILE=\"${data}\" -DGRASP_N=${n} -DELS_ITER_MAX=${o} -DELS_GEN=${i}"
${cc} ${cc_options} -o ${exe} -DFUNC=sk_nr_seq ${sources}
./${exe} --seed "${seed}"
for scale in $(seq 2 2 32); do
${cc} ${cc_options} -DFUNC=sk_nr_par -DNTHREADS=${scale} -o ${exe} ${sources}
./${exe} --seed "${seed}"
done
quit