mirror of
https://github.com/amd/blis.git
synced 2026-05-12 01:59:59 +00:00
Added decision logic for zgemmt
AMD-Internal: [CPUPL-1032] Change-Id: I8ba1c66b06cd91a864b16a249b263b3694ac1d5e
This commit is contained in:
@@ -326,6 +326,11 @@ BLIS_INLINE bool bli_cntx_gemmt_sup_thresh_is_met( num_t dt, dim_t n, dim_t k, c
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
else if ( bli_is_dcomplex( dt ) )
|
||||
{
|
||||
if ( n < 100 ) return TRUE;
|
||||
else return FALSE;
|
||||
}
|
||||
else
|
||||
return bli_cntx_l3_sup_thresh_is_met( dt, n, n, k, cntx );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user