Updated macro invocations in bli_gemm_ker_var2.c.

Details:
- Updated "get next a/b micropanel" macro invocations in
  bli_gemm_ker_var2.c according to changes in 9588625.
- Comment update in bli_cntx.c.
This commit is contained in:
Field G. Van Zee
2018-06-01 12:32:15 -05:00
parent 8749fa0b48
commit 965db85d29
2 changed files with 3 additions and 3 deletions

View File

@@ -988,7 +988,7 @@ void bli_cntx_set_thrloop_from_env
);
}
}
else // if ( l3_op == BLIS_TRSM )
else // if ( l3_op == BLIS_GEMM || l3_op == BLIS_HERK )
{
bli_cntx_set_thrloop
(

View File

@@ -283,11 +283,11 @@ void PASTECH2(blx_,ch,varname) \
m_cur = ( bli_is_not_edge_f( i, m_iter, m_left ) ? MR : m_left ); \
\
/* Compute the addresses of the next panels of A and B. */ \
a2 = gemm_get_next_a_micropanel( caucus, a1, rstep_a ); \
a2 = bli_gemm_get_next_a_upanel( caucus, a1, rstep_a ); \
if ( bli_is_last_iter( i, m_iter, ir_thread_id, ir_num_threads ) ) \
{ \
a2 = a_cast; \
b2 = gemm_get_next_b_micropanel( thread, b1, cstep_b ); \
b2 = bli_gemm_get_next_b_upanel( thread, b1, cstep_b ); \
if ( bli_is_last_iter( j, n_iter, jr_thread_id, jr_num_threads ) ) \
b2 = b_cast; \
} \