mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-05 02:30:18 +01:00
nak: Increase Imma latencies on Blackwell by 4
We already do +8 on HMMA. This gives us a +4 on IMMA which seems to fix
the test failures I'm seeing. This fixes the IMMA CTS tests on my RTX
5090 with NAK_DEBUG=spill.
Fixes: 477533ee00 ("nvk: add sm120 latencies via csv files.")
Reviewed-by: Mel Henning <mhenning@darkrefraction.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36524>
This commit is contained in:
parent
606fa193af
commit
ab97fea323
1 changed files with 4 additions and 0 deletions
|
|
@ -428,6 +428,10 @@ impl SM120Latency {
|
|||
|| read_latency == RegLatencySM100::Hmma
|
||||
{
|
||||
RegLatencySM100::raw(write_latency, read_latency, false) + 9
|
||||
} else if write_latency == RegLatencySM100::Imma
|
||||
|| read_latency == RegLatencySM100::Imma
|
||||
{
|
||||
RegLatencySM100::raw(write_latency, read_latency, false) + 5
|
||||
} else {
|
||||
RegLatencySM100::raw(write_latency, read_latency, false) + 1
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue