mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
intel/tools: fix 32b build for EU stall tool
Fixes: 610ad8d3 ("intel/tools: create intel_monitor for sampling eu stalls")
Reviewed-by: Felix DeGrood <felix.j.degrood@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34439>
This commit is contained in:
parent
fdf43f9152
commit
64b5ee3001
1 changed files with 4 additions and 1 deletions
|
|
@ -179,7 +179,10 @@ eustall_dump_results(void *cfg, FILE *file)
|
|||
data->dist_acc_count + data->sbid_count + data->sync_count +
|
||||
data->inst_fetch_count + data->active_count;
|
||||
|
||||
fprintf(file, "0x%08lx,%lu,%lu,%lu,%lu,%lu,%lu,%lu,%lu,%lu,%lu,%lu\n",
|
||||
fprintf(file,
|
||||
"0x%08" PRIx64 ",%" PRIu64 ",%" PRIu64 ",%" PRIu64 ",%" PRIu64 ","
|
||||
"%" PRIu64 ",%" PRIu64 ",%" PRIu64 ",%" PRIu64 ",%" PRIu64 ","
|
||||
"%" PRIu64 ",%" PRIu64 "\n",
|
||||
ip_addr, data->tdr_count, data->other_count, data->control_count,
|
||||
data->pipestall_count, data->send_count, data->dist_acc_count,
|
||||
data->sbid_count, data->sync_count, data->inst_fetch_count,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue