Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
replace star_reduction by our own reduction
[simgrid.git] / src / smpi / colls / reduce-flat-tree.c
index 7d178e1..f304e78 100644 (file)
@@ -50,7 +50,7 @@ smpi_coll_tuned_reduce_flat_tree(void *sbuf, void *rbuf, int count,
     }
 
     /* Call reduction function. */
-    star_reduction(op, inbuf, rbuf, &count, &dtype);
+    smpi_op_apply(op, inbuf, rbuf, &count, &dtype);
 
   }