mirror of
https://github.com/amd/blis.git
synced 2026-05-12 01:59:59 +00:00
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:
committed by
prangana
parent
cef185250e
commit
31bfe8985f
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user