mirror of
https://github.com/amd/blis.git
synced 2026-04-27 02:58:51 +00:00
Renamed bli_thread_obarrier(), _obroadcast().
Details:
- Renamed two bli_thread_*() APIs:
bli_thread_obarrier() -> bli_thread_barrier()
bli_thread_obroadcast() -> bli_thread_broadcast()
The 'o' was a leftover from when thrcomm_t objects tracked both
"inner" and "outer" communicators. They have long since been
simplified to only support the latter, and thus the 'o' is
superfluous.
Change-Id: If9ec9a2383dfb02e1cfc74918f87a1fabddbd55b
This commit is contained in:
committed by
Devrajegowda, Kiran
parent
6a957d7247
commit
9e76059f15
@@ -97,7 +97,7 @@ void PASTEMAC3(ch,opname,arch,suf) \
|
||||
encountered, then treat it the same as if it were a valid
|
||||
value that was smaller than any previously seen. This
|
||||
behavior mimics that of LAPACK's ?lange(). */ \
|
||||
if ( abs_chi1_max < abs_chi1 || bli_isnan( abs_chi1 ) ) \
|
||||
if ( abs_chi1_max < abs_chi1 || ( bli_isnan( abs_chi1 ) && !bli_isnan( abs_chi1_max ) ) ) \
|
||||
{ \
|
||||
abs_chi1_max = abs_chi1; \
|
||||
i_max_l = i; \
|
||||
@@ -129,7 +129,7 @@ void PASTEMAC3(ch,opname,arch,suf) \
|
||||
encountered, then treat it the same as if it were a valid
|
||||
value that was smaller than any previously seen. This
|
||||
behavior mimics that of LAPACK's ?lange(). */ \
|
||||
if ( abs_chi1_max < abs_chi1 || bli_isnan( abs_chi1 ) ) \
|
||||
if ( abs_chi1_max < abs_chi1 || ( bli_isnan( abs_chi1 ) && !bli_isnan( abs_chi1_max ) ) ) \
|
||||
{ \
|
||||
abs_chi1_max = abs_chi1; \
|
||||
i_max_l = i; \
|
||||
|
||||
Reference in New Issue
Block a user