X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/befbbbe1fbb31663a8f91e24ce12df271cf4ae79..dc6726419e36dd2853c7773e0a8fc177091e79e0:/teshsuite/smpi/coll-allgather/coll-allgather.c diff --git a/teshsuite/smpi/coll-allgather/coll-allgather.c b/teshsuite/smpi/coll-allgather/coll-allgather.c index 68cfc76500..2ca914cc9c 100644 --- a/teshsuite/smpi/coll-allgather/coll-allgather.c +++ b/teshsuite/smpi/coll-allgather/coll-allgather.c @@ -1,5 +1,4 @@ -/* Copyright (c) 2009-2010, 2013-2014. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2009-2023. 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. */ @@ -9,11 +8,8 @@ #include #include #include "mpi.h" - -#ifndef EXIT_SUCCESS -#define EXIT_SUCCESS 0 -#define EXIT_FAILURE 1 -#endif +#include +#include "simgrid/actor.h" int main(int argc, char *argv[]) { @@ -21,9 +17,13 @@ int main(int argc, char *argv[]) int size; int status; + int randomTime = sg_actor_self_get_pid() % 5; + sleep(randomTime); + MPI_Init(&argc, &argv); MPI_Comm_rank(MPI_COMM_WORLD, &rank); MPI_Comm_size(MPI_COMM_WORLD, &size); + MPI_Comm_set_errhandler(MPI_COMM_WORLD, MPI_ERRORS_RETURN); int count = 2; int* sb = (int *) xbt_malloc(count * sizeof(int)); @@ -34,6 +34,28 @@ int main(int argc, char *argv[]) for (int i = 0; i < count * size; ++i) rb[i] = 0; + status = MPI_Allgather(NULL, count, MPI_INT, rb, count, MPI_INT, MPI_COMM_WORLD); + if(status!=MPI_ERR_BUFFER) + printf("MPI_Allgather did not return MPI_ERR_BUFFER for empty sendbuf\n"); + status = MPI_Allgather(sb, -1, MPI_INT, rb, count, MPI_INT, MPI_COMM_WORLD); + if(status!=MPI_ERR_COUNT) + printf("MPI_Allgather did not return MPI_ERR_COUNT for -1 sendcount\n"); + status = MPI_Allgather(sb, count, MPI_DATATYPE_NULL, rb, count, MPI_INT, MPI_COMM_WORLD); + if(status!=MPI_ERR_TYPE) + printf("MPI_Allgather did not return MPI_ERR_TYPE for MPI_DATATYPE_NULL sendtype\n"); + status = MPI_Allgather(sb, count, MPI_INT, NULL, count, MPI_INT, MPI_COMM_WORLD); + if(status!=MPI_ERR_BUFFER) + printf("MPI_Allgather did not return MPI_ERR_BUFFER for empty recvbuf\n"); + status = MPI_Allgather(sb, count, MPI_INT, rb, -1, MPI_INT, MPI_COMM_WORLD); + if(status!=MPI_ERR_COUNT) + printf("MPI_Allgather did not return MPI_ERR_COUNT for -1 recvcount\n"); + status = MPI_Allgather(sb, count, MPI_INT, rb, count, MPI_DATATYPE_NULL, MPI_COMM_WORLD); + if(status!=MPI_ERR_TYPE) + printf("MPI_Allgather did not return MPI_ERR_TYPE for MPI_DATATYPE_NULL recvtype\n"); + status = MPI_Allgather(sb, count, MPI_INT, rb, count, MPI_INT, MPI_COMM_NULL); + if(status!=MPI_ERR_COMM) + printf("MPI_Allgather did not return MPI_ERR_COMM for MPI_COMM_NULL comm\n"); + printf("[%d] sndbuf=[", rank); for (int i = 0; i < count; i++) printf("%d ", sb[i]); @@ -46,14 +68,12 @@ int main(int argc, char *argv[]) printf("%d ", rb[i]); printf("]\n"); - if (rank == 0) { - if (status != MPI_SUCCESS) { - printf("allgather returned %d\n", status); - fflush(stdout); - } + if (rank == 0 && status != MPI_SUCCESS) { + printf("allgather returned %d\n", status); + fflush(stdout); } xbt_free(sb); xbt_free(rb); MPI_Finalize(); - return (EXIT_SUCCESS); + return EXIT_SUCCESS; }