printf "This can take a while!\n"
printf "\n"
-printf "| CPU | OS | Config | Model | Threads | Load [ms] | Encode [ms] | Commit |\n"
-printf "| --- | -- | ------ | ----- | ------- | --------- | ----------- | ------ |\n"
+printf "| CPU | OS | Config | Model | Th | Load | Enc. | Commit |\n"
+printf "| --- | -- | ------ | ----- | -- | ---- | ---- | ------ |\n"
for model in "${models[@]}"; do
# run once to heat-up the cache
system_info=$(echo "$output" | grep "system_info")
n_threads=$(echo "$output" | grep "system_info" | awk '{print $4}')
+ # floor to milliseconds
+ load_time=${load_time%.*}
+ encode_time=${encode_time%.*}
+
config=""
if [[ $system_info == *"AVX2 = 1"* ]]; then