Fixed kernel selection logic of DTRSM for zen5 architecture.

- Instead of native, we are wrongly selecting TRSM small, now its fixed.

AMD-Internal: [SWLCSG-3338]
Change-Id: I7a06a483fd874c71562a924b50118e0fc9e3b213
This commit is contained in:
Shubham Sharma
2025-03-21 12:52:21 +00:00
committed by Shubham Sharma
parent eaa76dfe28
commit 350c7186e5

View File

@@ -1224,7 +1224,7 @@ void dtrsm_blis_impl
}
else //if ( blis_side == BLIS_RIGHT )
{
if ( n0 < 1812 || m0 < 3220 )
if ( (n0 < 1812 || m0 < 3220) && (m0 < 14000) )
{
ker_ft = bli_trsm_small_mt_ZEN5;
}