nouveau: nvidia_header: Add TURING_COMPUTE_A and AMPERE_COMPUTE_A in vk_push_print

Signed-off-by: Mary Guillemard <mary.guillemard@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27126>
This commit is contained in:
Mary Guillemard 2023-10-18 10:19:44 +02:00 committed by Marge Bot
parent 2d8b9b9160
commit 20b3f9521e

View file

@ -17,7 +17,9 @@
#include "nvk_clc397.h"
#include "nvk_clc3c0.h"
#include "nvk_clc597.h"
#include "nvk_clc5c0.h"
#include "nvk_clc697.h"
#include "nvk_clc6c0.h"
#ifndef NDEBUG
void
@ -121,7 +123,11 @@ vk_push_print(FILE *fp, const struct nv_push *push,
mthd_name = P_PARSE_NV9097_MTHD(mthd);
break;
case 1:
if (devinfo->cls_compute >= 0xc3c0)
if (devinfo->cls_compute >= 0xc6c0)
mthd_name = P_PARSE_NVC6C0_MTHD(mthd);
else if (devinfo->cls_compute >= 0xc5c0)
mthd_name = P_PARSE_NVC5C0_MTHD(mthd);
else if (devinfo->cls_compute >= 0xc3c0)
mthd_name = P_PARSE_NVC3C0_MTHD(mthd);
else if (devinfo->cls_compute >= 0xc0c0)
mthd_name = P_PARSE_NVC0C0_MTHD(mthd);