From 029ed033f10f949391fcccf223bd2a70c3fa03e7 Mon Sep 17 00:00:00 2001 From: Meghana Vankadari Date: Fri, 9 Oct 2020 12:04:28 +0530 Subject: [PATCH] Added decision logic for zgemmt AMD-Internal: [CPUPL-1032] Change-Id: I8ba1c66b06cd91a864b16a249b263b3694ac1d5e --- frame/base/bli_cntx.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frame/base/bli_cntx.h b/frame/base/bli_cntx.h index 58027aaa3..a5a1b3c5c 100644 --- a/frame/base/bli_cntx.h +++ b/frame/base/bli_cntx.h @@ -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 ); }