mirror of
https://github.com/amd/blis.git
synced 2026-04-19 23:28:52 +00:00
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:
@@ -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
|
||||
(
|
||||
|
||||
@@ -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; \
|
||||
} \
|
||||
|
||||
Reference in New Issue
Block a user