@@ -44,10 +44,11 @@ BEGIN_C_DECLS
4444#define MCA_COMMON_UCX_QUOTE (_x ) \
4545 _MCA_COMMON_UCX_QUOTE(_x)
4646
47- #define MCA_COMMON_UCX_ERROR (...) \
48- opal_output_verbose(0, opal_common_ucx.output, \
49- __FILE__ ":" MCA_COMMON_UCX_QUOTE(__LINE__) \
50- " Error: " __VA_ARGS__)
47+ #define MCA_COMMON_UCX_ERROR (...) \
48+ MCA_COMMON_UCX_VERBOSE(0, " Error: " __VA_ARGS__)
49+
50+ #define MCA_COMMON_UCX_WARN (...) \
51+ MCA_COMMON_UCX_VERBOSE(0, " Warning: " __VA_ARGS__)
5152
5253#define MCA_COMMON_UCX_VERBOSE (_level , ... ) \
5354 if (((_level) <= MCA_COMMON_UCX_MAX_VERBOSE) && \
@@ -101,6 +102,7 @@ extern opal_common_ucx_module_t opal_common_ucx;
101102
102103OPAL_DECLSPEC void opal_common_ucx_mca_register (void );
103104OPAL_DECLSPEC void opal_common_ucx_mca_deregister (void );
105+ OPAL_DECLSPEC void opal_common_ucx_mca_proc_added (void );
104106OPAL_DECLSPEC void opal_common_ucx_empty_complete_cb (void * request , ucs_status_t status );
105107OPAL_DECLSPEC int opal_common_ucx_mca_pmix_fence (ucp_worker_h worker );
106108OPAL_DECLSPEC int opal_common_ucx_del_procs (opal_common_ucx_del_proc_t * procs , size_t count ,
0 commit comments