Updated ref99 call to _cntx_set_thrloop_from_env().

Details:
- Reordered the arguments in the ref99 sandbox's call to
  bli_cntx_set_thrloop_from_env() to be consistent with the updated
  function signature from f97a86f. Thanks to Devangi Parikh for
  reporting this issue.
This commit is contained in:
Field G. Van Zee
2018-06-05 16:07:13 -05:00
parent ed7dedfd4a
commit 1b9af85ec9

View File

@@ -97,10 +97,15 @@ void blx_gemm_front
}
// Record the threading for each level within the context.
bli_cntx_set_thrloop_from_env( BLIS_GEMM, BLIS_LEFT, cntx,
bli_obj_length( &c_local ),
bli_obj_width( &c_local ),
bli_obj_width( &a_local ) );
bli_cntx_set_thrloop_from_env
(
BLIS_GEMM,
BLIS_LEFT, // ignored for gemm
bli_obj_length( &c_local ),
bli_obj_width( &c_local ),
bli_obj_width( &a_local ),
cntx
);
// Invoke the internal back-end via the thread handler.
blx_gemm_thread