From c5ea1d0ff0e0eb7b03eec41f1b10202a9746a00e Mon Sep 17 00:00:00 2001 From: benrichard-amd Date: Fri, 12 Jul 2024 19:16:49 -0500 Subject: [PATCH] Set correct number of TCC channels for gfx942 Ran into rocprof error: ROCProfiler: fatal error: input metric'TCC_EA0_RDREQ[16]' not supported on this hardware: gfx942 gfx942 has 16 channels, not 32. Signed-off-by: benrichard-amd --- src/omniperf_soc/soc_gfx942.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/omniperf_soc/soc_gfx942.py b/src/omniperf_soc/soc_gfx942.py index 88aeda39e9..05b39a77e1 100644 --- a/src/omniperf_soc/soc_gfx942.py +++ b/src/omniperf_soc/soc_gfx942.py @@ -64,7 +64,7 @@ class gfx942_soc(OmniSoC_Base): "SPI": 2, "GRBM": 2, "GDS": 4, - "TCC_channels": 32, + "TCC_channels": 16, } ) # self.roofline_obj = Roofline(args, self._mspec)