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); igt_assert(status == 0);
} }
gettimeofday(&end, NULL); gettimeofday(&end, NULL);
printf("Time to execute %lu children: %7.3fµs\n", printf("Time to execute %lu children: %7.3fms\n",
ARRAY_SIZE(children), elapsed(&start, &end)); ARRAY_SIZE(children), elapsed(&start, &end) / 1000);
return 0; return 0;
} }