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

29
scripts/test Executable file
View File

@ -0,0 +1,29 @@
#!/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}\""
cc_options+=" -DSUBTIME"
# ${cc} ${cc_options} -o ${exe} -DFUNC=hw_seq_v ${sources}
# ./${exe}
# for scale in $(seq 2 2 32); do
# ${cc} ${cc_options} -DFUNC=hw_par_v -DGRASP_N=${n} -DELS_ITER_MAX=${o} -DELS_GEN=${i} -DPARLEV=1 -DNTHREADS=${scale} -o ${exe} ${sources}
# ./${exe}
# done
scale=4
for n in $(seq 6 2 24); do
${cc} ${cc_options} -DFUNC=hw_par_v -DGRASP_N=${n} -DELS_ITER_MAX=${o} -DELS_GEN=${i} -DPARLEV=1 -DNTHREADS=${scale} -o ${exe} ${sources}
./${exe}
done
quit