mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-24 10:38:11 +02:00
ac/info: Print number of VPE instances
Reviewed-by: Ruijing Dong <ruijing.dong@amd.com> Reviewed-by: Benjamin Cheng <benjamin.cheng@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35431>
This commit is contained in:
parent
c5a9bfc210
commit
2c0caee6db
1 changed files with 3 additions and 0 deletions
|
|
@ -2016,6 +2016,9 @@ void ac_print_gpu_info(FILE *f, const struct radeon_info *info, int fd)
|
|||
if (info->ip[AMD_IP_VCN_JPEG].num_queues)
|
||||
fprintf(f, " jpeg_decode = %u\n", info->ip[AMD_IP_VCN_JPEG].num_instances);
|
||||
|
||||
if (info->ip[AMD_IP_VPE].num_queues)
|
||||
fprintf(f, " vpe = %u\n", info->ip[AMD_IP_VPE].num_instances);
|
||||
|
||||
ac_print_video_info(f, info);
|
||||
|
||||
fprintf(f, "Kernel & winsys capabilities:\n");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue