X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e7c0c67af63b3979a597a66e5e1c8b0435fc6e19..e9f0018b823e34405847177b25a85d3facc30ae1:/src/smpi/colls/alltoall-ring-light-barrier.c diff --git a/src/smpi/colls/alltoall-ring-light-barrier.c b/src/smpi/colls/alltoall-ring-light-barrier.c index d45912bc6a..eb3de84673 100644 --- a/src/smpi/colls/alltoall-ring-light-barrier.c +++ b/src/smpi/colls/alltoall-ring-light-barrier.c @@ -1,3 +1,9 @@ +/* Copyright (c) 2013-2014. The SimGrid Team. + * All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ + #include "colls_private.h" /***************************************************************************** @@ -31,7 +37,7 @@ smpi_coll_tuned_alltoall_ring_light_barrier(void *send_buff, int send_count, MPI_Aint send_chunk, recv_chunk; MPI_Status s; int i, src, dst, rank, num_procs, next_dst, next_src; - int tag = 1; + int tag = COLL_TAG_ALLTOALL; char send_sync = 'a', recv_sync = 'b'; char *send_ptr = (char *) send_buff;