diff --git a/ompi/mca/coll/ml/coll_ml_allreduce.c b/ompi/mca/coll/ml/coll_ml_allreduce.c index 7a25d908cd..0babfd942e 100644 --- a/ompi/mca/coll/ml/coll_ml_allreduce.c +++ b/ompi/mca/coll/ml/coll_ml_allreduce.c @@ -425,7 +425,6 @@ int mca_coll_ml_allreduce(void *sbuf, void *rbuf, int count, int ret; if (OPAL_UNLIKELY(!ompi_op_is_commute(op))) { - fprintf (stderr, "Falling back for allreduce\n"); /* coll/ml does not handle non-communative operations at this time. fallback * on another collective module */ return ml_module->fallback.coll_allreduce (sbuf, rbuf, count, dtype, op, comm, @@ -459,7 +458,6 @@ int mca_coll_ml_allreduce_nb(void *sbuf, void *rbuf, int count, int ret; if (OPAL_UNLIKELY(!ompi_op_is_commute(op))) { - fprintf (stderr, "Falling back for iallreduce\n"); /* coll/ml does not handle non-communative operations at this time. fallback * on another collective module */ return ml_module->fallback.coll_iallreduce (sbuf, rbuf, count, dtype, op, comm, req, diff --git a/ompi/mca/coll/ml/coll_ml_reduce.c b/ompi/mca/coll/ml/coll_ml_reduce.c index 1a7d1c2e40..9fe0afc73d 100644 --- a/ompi/mca/coll/ml/coll_ml_reduce.c +++ b/ompi/mca/coll/ml/coll_ml_reduce.c @@ -467,7 +467,6 @@ int mca_coll_ml_reduce(void *sbuf, void *rbuf, int count, ompi_request_t *req; if (OPAL_UNLIKELY(!ompi_op_is_commute(op))) { - fprintf (stderr, "Falling back for reduce\n"); /* coll/ml does not handle non-communative operations at this time. fallback * on another collective module */ return ml_module->fallback.coll_reduce (sbuf, rbuf, count, dtype, op, root, comm, @@ -503,7 +502,6 @@ int mca_coll_ml_reduce_nb(void *sbuf, void *rbuf, int count, mca_coll_ml_module_t *ml_module = (mca_coll_ml_module_t*)module; if (OPAL_UNLIKELY(!ompi_op_is_commute(op))) { - fprintf (stderr, "Falling back for ireduce\n"); /* coll/ml does not handle non-communative operations at this time. fallback * on another collective module */ return ml_module->fallback.coll_ireduce (sbuf, rbuf, count, dtype, op, root, comm, req,