Skip to content

Commit

Permalink
Set correct number of TCC channels for gfx942
Browse files Browse the repository at this point in the history
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 <ben.richard@amd.com>
  • Loading branch information
benrichard-amd authored and coleramos425 committed Jul 18, 2024
1 parent d4e80bd commit ea9c7ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/omniperf_soc/soc_gfx942.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __init__(self, args, mspec):
"SPI": 2,
"GRBM": 2,
"GDS": 4,
"TCC_channels": 32,
"TCC_channels": 16,
}
)
# self.roofline_obj = Roofline(args, self._mspec)
Expand Down

0 comments on commit ea9c7ea

Please sign in to comment.