gem_gtt_hog: Print elapsed time in ms

Missed one last diff before pushing
This commit is contained in:
Chris Wilson 2014-01-10 16:09:57 +00:00
parent f62abaff99
commit 84af2b9be8

View File

@ -170,8 +170,8 @@ int main(int argc, char **argv)
igt_assert(status == 0);
}
gettimeofday(&end, NULL);
printf("Time to execute %lu children: %7.3fµs\n",
ARRAY_SIZE(children), elapsed(&start, &end));
printf("Time to execute %lu children: %7.3fms\n",
ARRAY_SIZE(children), elapsed(&start, &end) / 1000);
return 0;
}