mirror of
https://github.com/amd/blis.git
synced 2026-04-20 07:38:53 +00:00
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:
committed by
Shubham Sharma
parent
eaa76dfe28
commit
350c7186e5
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user