intel/tools: print out GRF size in intel_dev_info

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35160>
This commit is contained in:
Lionel Landwerlin 2026-02-11 10:00:38 +02:00 committed by Marge Bot
parent 1f1f484570
commit 872ea727fb

View file

@ -96,6 +96,7 @@ print_base_devinfo(const struct intel_device_info *devinfo)
devinfo->ver >= 20 ? 16 : devinfo->ver >= 12 ? 8 : 4);
fprintf(stdout, " EU threads: %u\n", n_eus * devinfo->num_thread_per_eu);
fprintf(stdout, " GRF size: %u\n", devinfo->grf_size);
fprintf(stdout, " LLC: %u\n", devinfo->has_llc);
fprintf(stdout, " threads per EU: %u\n", devinfo->num_thread_per_eu);