| 1 | #!/bin/bash |
|---|
| 2 | |
|---|
| 3 | # archi1 archi2 archi3 archi4 archi5 |
|---|
| 4 | archi_name=( "min" "tsar" "full_assoc" "2k" "4k" ); |
|---|
| 5 | iways=( "1" "4" "16" "4" "4" ); |
|---|
| 6 | isets=( "8" "64" "1" "8" "16" ); |
|---|
| 7 | iwords=( "16" "16" "16" "16" "16" ); |
|---|
| 8 | dways=( "1" "4" "16" "4" "4" ); |
|---|
| 9 | dsets=( "8" "64" "1" "8" "16" ); |
|---|
| 10 | dwords=( "16" "16" "16" "16" "16" ); |
|---|
| 11 | memc_nways=( "4" "16" "8" "2" "16" ); |
|---|
| 12 | memc_nsets=( "4" "256" "64" "32" "64" ); |
|---|
| 13 | memc_words=( "16" "16" "16" "16" "16" ); |
|---|
| 14 | memc_heap_size=("4096" "4096" "4096" "4096" "4096" ); |
|---|
| 15 | |
|---|
| 16 | nb_proc=( "1" "15" "+1" "4"); |
|---|
| 17 | nb_cpu_by_cache=("1" "15" "*2" "1"); |
|---|
| 18 | nb_cache=( "1" "16" "*2" "1"); |
|---|
| 19 | #wnwords=( "1" "16" "*2" "4"); |
|---|
| 20 | #wnlines=( "1" "8" "*2" "8"); |
|---|
| 21 | #wtimeout=( "1" "1024" "*4" "16"); |
|---|
| 22 | |
|---|
| 23 | wnwords=( "4" "4" "*2" "4"); |
|---|
| 24 | wnlines=( "8" "8" "*2" "8"); |
|---|
| 25 | wtimeout=( "16" "16" "*4" "16"); |
|---|
| 26 | |
|---|
| 27 | archi_default="1"; |
|---|
| 28 | gen_cfg=0; |
|---|
| 29 | |
|---|
| 30 | function gen_file () |
|---|
| 31 | { |
|---|
| 32 | filename=$(printf "archi_%s-x%.2d_%.2d_%.2d-wbuf_%.2d_%.2d_%.4d.cfg" ${archi_name[${4}]} ${1} ${2} ${3} ${5} ${6} ${7}); |
|---|
| 33 | |
|---|
| 34 | echo ${filename}; |
|---|
| 35 | |
|---|
| 36 | echo "${1}" > ${filename}; |
|---|
| 37 | echo "${2} ${3}" >> ${filename}; |
|---|
| 38 | echo "${iways[${4}]} ${isets[${4}]} ${iwords[${4}]}" >> ${filename}; |
|---|
| 39 | echo "${dways[${4}]} ${dsets[${4}]} ${dwords[${4}]}" >> ${filename}; |
|---|
| 40 | echo "${5} ${6} ${7}" >> ${filename}; |
|---|
| 41 | echo "${memc_nways[${4}]} ${memc_nsets[${4}]} ${memc_words[${4}]} ${memc_heap_size[${4}]}" >> ${filename}; |
|---|
| 42 | } |
|---|
| 43 | |
|---|
| 44 | function gen_default () |
|---|
| 45 | { |
|---|
| 46 | filename="default.cfg"; |
|---|
| 47 | archi=${1}; |
|---|
| 48 | |
|---|
| 49 | echo ${filename}; |
|---|
| 50 | |
|---|
| 51 | echo "${nb_proc[3]}" > ${filename}; |
|---|
| 52 | echo "${nb_cpu_by_cache[3]} ${nb_cache[3]}" >> ${filename}; |
|---|
| 53 | echo "${iways[${archi}]} ${isets[${archi}]} ${iwords[${archi}]}" >> ${filename}; |
|---|
| 54 | echo "${dways[${archi}]} ${dsets[${archi}]} ${dwords[${archi}]}" >> ${filename}; |
|---|
| 55 | echo "${wnwords[3]} ${wnlines[3]} ${wtimeout[3]}" >> ${filename}; |
|---|
| 56 | echo "${memc_nways[${archi}]} ${memc_nsets[${archi}]} ${memc_words[${archi}]} ${memc_heap_size[${archi}]}" >> ${filename}; |
|---|
| 57 | } |
|---|
| 58 | |
|---|
| 59 | gen_default ${archi_default}; |
|---|
| 60 | |
|---|
| 61 | if test ${gen_cfg} -ne 0; then |
|---|
| 62 | nb_archi=${#iways[*]}; |
|---|
| 63 | |
|---|
| 64 | num_archi=0; |
|---|
| 65 | while test ${num_archi} -lt ${nb_archi}; do |
|---|
| 66 | num_proc=${nb_proc[0]}; |
|---|
| 67 | while test ${num_proc} -le ${nb_proc[1]}; do |
|---|
| 68 | num_cpu_by_cache=${nb_cpu_by_cache[0]}; |
|---|
| 69 | while test ${num_cpu_by_cache} -le ${nb_cpu_by_cache[1]}; do |
|---|
| 70 | |
|---|
| 71 | if test $((${num_proc} * ${num_cpu_by_cache})) -le ${nb_cpu_by_cache[1]}; then |
|---|
| 72 | |
|---|
| 73 | num_cache=${nb_cache[0]}; |
|---|
| 74 | while test ${num_cache} -le ${nb_cache[1]}; do |
|---|
| 75 | |
|---|
| 76 | if test ${num_cache} -ge ${num_cpu_by_cache}; then |
|---|
| 77 | if test ${num_cpu_by_cache} -ne 1 -o ${num_cache} -eq 1; then |
|---|
| 78 | |
|---|
| 79 | num_words=${wnwords[0]}; |
|---|
| 80 | while test ${num_words} -le ${wnwords[1]}; do |
|---|
| 81 | num_lines=${wnlines[0]}; |
|---|
| 82 | while test ${num_lines} -le ${wnlines[1]}; do |
|---|
| 83 | num_timeout=${wtimeout[0]}; |
|---|
| 84 | while test ${num_timeout} -le ${wtimeout[1]}; do |
|---|
| 85 | |
|---|
| 86 | gen_file ${num_proc} ${num_cpu_by_cache} ${num_cache} ${num_archi} ${num_words} ${num_lines} ${num_timeout}; |
|---|
| 87 | |
|---|
| 88 | num_timeout=$((${num_timeout} ${wtimeout[2]})); |
|---|
| 89 | done; |
|---|
| 90 | num_lines=$((${num_lines} ${wnlines[2]})); |
|---|
| 91 | done; |
|---|
| 92 | num_words=$((${num_words} ${wnwords[2]})); |
|---|
| 93 | done; |
|---|
| 94 | fi; |
|---|
| 95 | fi; |
|---|
| 96 | num_cache=$((${num_cache} ${nb_cache[2]})); |
|---|
| 97 | done; |
|---|
| 98 | fi; |
|---|
| 99 | num_cpu_by_cache=$((${num_cpu_by_cache} ${nb_cpu_by_cache[2]})); |
|---|
| 100 | done; |
|---|
| 101 | num_proc=$((${num_proc} ${nb_proc[2]})); |
|---|
| 102 | done; |
|---|
| 103 | num_archi=$((${num_archi}+1)); |
|---|
| 104 | done; |
|---|
| 105 | fi; |
|---|
| 106 | |
|---|