| <th>576 bytes</th> |
<th>576 bytes</th> |
| <th>1500 bytes</th> |
<th>1500 bytes</th> |
| <th>Imix</th> |
<th>Imix</th> |
| |
<th>Agility</th> |
| <th>Key setup</th> |
<th>Key setup</th> |
| <th>IV setup</th> |
<th>IV setup</th> |
| <th>Variant</th> |
<th>Variant</th> |
| |
|
| make_header "Results" $(find_css) > index.html; |
make_header "Results" $(find_css) > index.html; |
| |
|
| first=true; |
keysizes=""; |
| "$root/scripts/tabulate" speed_* | sort -n | while read line; do |
"$root/scripts/tabulate" speed_* | sort -n | while read line; do |
| echo ${line#* } >> index.html; |
echo ${line#*;} >> index.html; |
| |
|
| if [ "$first" = "true" ]; then |
keysize=${line%%;*}; |
| |
keysize=${keysize#* }; |
| |
|
| |
if ! expr match "$keysizes" ".*$keysize.*" &> /dev/null; then |
| echo " ${line//href=\'/href=\'$dir/}"; |
echo " ${line//href=\'/href=\'$dir/}"; |
| first=false; |
keysizes="$keysizes $keysize"; |
| fi |
fi |
| done |
done |
| |
|
| line=${line/"<tr>"/"<tr class='benchmark'>"}; |
line=${line/"<tr>"/"<tr class='benchmark'>"}; |
| fi |
fi |
| |
|
| echo " ${line#* }" >> index.html; |
echo " ${line#*;}" >> index.html; |
| |
|
| config=$(echo $line | sed 's/^.*<a[^<]*speed[^<]*>\([^<]*\)<.*$/\1/'); |
config=$(echo $line | sed 's/^.*<a[^<]*speed[^<]*>\([^<]*\)<.*$/\1/'); |
| awk '/^tag/ { print $3; exit; }' "$reports/configs/$config.mk"; |
awk '/^tag/ { print $3; exit; }' "$reports/configs/$config.mk"; |