From 7ba8bd81faab7a5ffa97698a1e394da986adb346 Mon Sep 17 00:00:00 2001 From: Nathan Hjelm Date: Wed, 22 Jan 2014 17:21:05 +0000 Subject: [PATCH] coll/ml: remove debug fprintfs cmr=v1.7.5:ticket=trac:4158 This commit was SVN r30367. The following Trac tickets were found above: Ticket 4158 --> https://svn.open-mpi.org/trac/ompi/ticket/4158 --- ompi/mca/coll/ml/coll_ml_allreduce.c | 2 -- ompi/mca/coll/ml/coll_ml_reduce.c | 2 -- 2 files changed, 4 deletions(-) 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,