microbench: avoid %03d in the format string
This commit is contained in:
parent
1a008865df
commit
a3d742d259
1 changed files with 17 additions and 4 deletions
|
@ -10,6 +10,20 @@ static char *hbrk;
|
||||||
|
|
||||||
static uint64_t uptime() { return io_read(AM_TIMER_UPTIME).us; }
|
static uint64_t uptime() { return io_read(AM_TIMER_UPTIME).us; }
|
||||||
|
|
||||||
|
static char *format_time(uint64_t us) {
|
||||||
|
static char buf[32];
|
||||||
|
uint32_t ms = us / 1000;
|
||||||
|
us -= ms * 1000;
|
||||||
|
assert(us < 1000);
|
||||||
|
int len = sprintf(buf, "%d.000", ms);
|
||||||
|
char *p = &buf[len - 1];
|
||||||
|
while (us > 0) {
|
||||||
|
*(p --) = '0' + us % 10;
|
||||||
|
us /= 10;
|
||||||
|
}
|
||||||
|
return buf;
|
||||||
|
}
|
||||||
|
|
||||||
// The benchmark list
|
// The benchmark list
|
||||||
|
|
||||||
#define ENTRY(_name, _sname, _s, _m, _l, _h, _desc) \
|
#define ENTRY(_name, _sname, _s, _m, _l, _h, _desc) \
|
||||||
|
@ -115,8 +129,7 @@ int main(const char *args) {
|
||||||
|
|
||||||
printf("\n");
|
printf("\n");
|
||||||
if (setting_id != 0) {
|
if (setting_id != 0) {
|
||||||
printf(" min time: %d.%03d ms [%d]\n",
|
printf(" min time: %s ms [%d]\n", format_time(usec), cur);
|
||||||
(int)(usec / 1000), (int)usec % 1000, (unsigned int)cur);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bench_score += cur;
|
bench_score += cur;
|
||||||
|
@ -134,8 +147,8 @@ int main(const char *args) {
|
||||||
} else {
|
} else {
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
printf("Scored time: %d.%03d ms\n", (int)((score_time) / 1000), (int)score_time % 1000);
|
printf("Scored time: %s ms\n", format_time(score_time));
|
||||||
printf("Total time: %d.%03d ms\n", (int)((total_time) / 1000), (int)total_time % 1000);
|
printf("Total time: %s ms\n", format_time(total_time));
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue