1
1

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
Этот коммит содержится в:
Nathan Hjelm 2014-01-22 17:21:05 +00:00
родитель 82d996fb76
Коммит 7ba8bd81fa
2 изменённых файлов: 0 добавлений и 4 удалений

Просмотреть файл

@ -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,

Просмотреть файл

@ -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,