diff --git a/frame/2/her/bli_her_unb_var1_amd.c b/frame/2/her/bli_her_unb_var1_amd.c index 13334c541..297c9200e 100644 --- a/frame/2/her/bli_her_unb_var1_amd.c +++ b/frame/2/her/bli_her_unb_var1_amd.c @@ -163,8 +163,11 @@ void PASTEMAC(ch,varname) \ ) \ { \ const num_t dt = PASTEMAC(ch,type); \ + /* ToDo: + Enable intrinsic implementation after verifying + with netlib BLAS tests. */ \ /* Redirect to intrinsic implementation of HER for dcomplex */ \ - if ( bli_cpuid_is_avx_supported() == TRUE && bli_is_conj(conjh) && incx == 1 ) \ + /* if ( bli_cpuid_is_avx_supported() == TRUE && bli_is_conj(conjh) && incx == 1 ) \ { \ bli_zher_zen_int_var1 \ ( \ @@ -181,7 +184,7 @@ void PASTEMAC(ch,varname) \ cntx \ ); \ } \ - else \ + else \ */ \ { \ ctype* x0; \ ctype* chi1; \ diff --git a/frame/2/her/bli_her_unb_var2_amd.c b/frame/2/her/bli_her_unb_var2_amd.c index 6fb4a5d29..c101200d2 100644 --- a/frame/2/her/bli_her_unb_var2_amd.c +++ b/frame/2/her/bli_her_unb_var2_amd.c @@ -163,8 +163,11 @@ void PASTEMAC(ch,varname) \ ) \ { \ const num_t dt = PASTEMAC(ch,type); \ + /* ToDo: + Enable intrinsic implementation after verifying + with netlib BLAS tests. */ \ /* Redirect to intrinsic implementation of HER for unit increment */ \ - if ( bli_cpuid_is_avx_supported() == TRUE && bli_is_conj(conjh) && incx == 1 ) \ + /* if ( bli_cpuid_is_avx_supported() == TRUE && bli_is_conj(conjh) && incx == 1 ) \ { \ bli_zher_zen_int_var2 \ ( \ @@ -181,7 +184,7 @@ void PASTEMAC(ch,varname) \ cntx \ ); \ } \ - else \ + else \ */ \ { \ ctype* chi1; \ ctype* x2; \