mirror of
https://github.com/amd/blis.git
synced 2026-04-20 15:48:50 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user