Add LTO in configure, add more benchmarks

This commit is contained in:
2025-10-12 23:16:00 +03:00
parent 54563daf13
commit 577c3091e6
14 changed files with 1222 additions and 141 deletions

View File

@@ -86,7 +86,7 @@ int BH_BenchIter(BH_Bench *state)
float ips, ns;
ips = state->iterations / (millis / 1000.0f);
ns = (millis * 1000000.0) / state->iterations;
printf("%s\t%.2f ips (%.2f ns)\n", state->name, ips, ns);
printf("%-12s %.2f ips (%.2f ns)\n", state->name, ips, ns);
return 0;
}
return 1;