re-enabling the boundary check condition for bli_dtrsm_small_AlXB. It was disabled by mistake in previous commits.

Change-Id: Ib7d2d0c5e133ff10559ce3dc5f7e624707e43c11
This commit is contained in:
Meghana Vankadari
2019-12-03 10:50:38 +05:30
committed by prangana
parent cef185250e
commit 31bfe8985f

View File

@@ -946,7 +946,7 @@ static err_t bli_dtrsm_small_AlXB(
dim_t m = bli_obj_length(b); // number of rows of matrix B
dim_t n = bli_obj_width(b); // number of columns of matrix B
/*
#ifdef BLIS_ENABLE_SMALL_MATRIX_ROME
if(bli_max(m,n) > D_BLIS_SMALL_MATRIX_THRES_TRSM_ALXB_ROME)
{
@@ -958,7 +958,7 @@ static err_t bli_dtrsm_small_AlXB(
return BLIS_NOT_YET_IMPLEMENTED;
}
#endif
*/
dim_t m_remainder = m % D_MR; //number of remainder rows
dim_t n_remainder = n % D_NR; //number of remainder columns