X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96cedde3cdbc0b8ffc3f096a1b65d021b0226f99..39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f:/teshsuite/smpi/macro-partial-shared-communication/macro-partial-shared-communication.c diff --git a/teshsuite/smpi/macro-partial-shared-communication/macro-partial-shared-communication.c b/teshsuite/smpi/macro-partial-shared-communication/macro-partial-shared-communication.c index d5b27aefd2..cf697ccb1f 100644 --- a/teshsuite/smpi/macro-partial-shared-communication/macro-partial-shared-communication.c +++ b/teshsuite/smpi/macro-partial-shared-communication/macro-partial-shared-communication.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2017-2021. 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. */ @@ -12,12 +12,13 @@ // Set the elements between buf[start] and buf[stop-1] to (i+value)%256 static void set(uint8_t *buf, size_t start, size_t stop, uint8_t value) { for(size_t i = start; i < stop; i++) { - buf[i] = (i+value)%256; + buf[i] = (uint8_t)((i + value) % 256); } } // Return the number of times that an element is equal to (i+value)%256 between buf[start] and buf[stop-1]. -static int count_all(uint8_t *buf, size_t start, size_t stop, uint8_t value) { +static size_t count_all(const uint8_t* buf, size_t start, size_t stop, uint8_t value) +{ size_t occ = 0; for(size_t i = start ; i < stop ; i++) { if(buf[i] == (i+value)%256) { @@ -28,7 +29,8 @@ static int count_all(uint8_t *buf, size_t start, size_t stop, uint8_t value) { } // Return true iff the values from buf[start] to buf[stop-1] are all equal to (i+value)%256. -static int check_all(uint8_t *buf, size_t start, size_t stop, uint8_t value) { +static int check_all(const uint8_t* buf, size_t start, size_t stop, uint8_t value) +{ size_t occ = count_all(buf, start, stop, value); return occ == stop-start; } @@ -62,15 +64,15 @@ int main(int argc, char *argv[]) for(int i = 0; i < nb_blocks-1; i++) { size_t start = shared_blocks[2*i+1]; size_t stop = shared_blocks[2*i+2]; - set(buf, start, stop, rank); + set(buf, start, stop, (uint8_t)rank); } } // Then, even processes send their buffer to their successor if(rank%2 == 0) { - MPI_Send(buf, mem_size, MPI_UINT8_T, rank+1, 0, MPI_COMM_WORLD); + MPI_Send(buf, (int)mem_size, MPI_UINT8_T, rank + 1, 0, MPI_COMM_WORLD); } else { - MPI_Recv(buf, mem_size, MPI_UINT8_T, rank-1, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE); + MPI_Recv(buf, (int)mem_size, MPI_UINT8_T, rank - 1, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE); } @@ -79,7 +81,7 @@ int main(int argc, char *argv[]) for(int i = 0; i < nb_blocks-1; i++) { size_t start = shared_blocks[2*i+1]; size_t stop = shared_blocks[2*i+2]; - int comm = check_all(buf, start, stop, rank-1); + int comm = check_all(buf, start, stop, (uint8_t)(rank - 1)); printf("[%d] The result of the (normal) communication check for block (0x%zx, 0x%zx) is: %d\n", rank, start, stop, comm); } memset(buf, rank, mem_size); @@ -90,10 +92,10 @@ int main(int argc, char *argv[]) // Then, even processes send a sub-part of their buffer their successor // Note that the last block should not be copied entirely if(rank%2 == 0) { - MPI_Send(buf+0x10000, mem_size-0xa00000, MPI_UINT8_T, rank+1, 0, MPI_COMM_WORLD); + MPI_Send(buf + 0x10000, (int)(mem_size - 0xa00000), MPI_UINT8_T, rank + 1, 0, MPI_COMM_WORLD); } else { - MPI_Recv(buf+0x10000, mem_size-0xa00000, MPI_UINT8_T, rank-1, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE); + MPI_Recv(buf + 0x10000, (int)(mem_size - 0xa00000), MPI_UINT8_T, rank - 1, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE); } @@ -102,7 +104,7 @@ int main(int argc, char *argv[]) for(int i = 0; i < nb_blocks-1; i++) { size_t start = shared_blocks[2*i+1]; size_t stop = shared_blocks[2*i+2]; - int comm = check_all(buf, start, stop, rank-1); + int comm = check_all(buf, start, stop, (uint8_t)(rank - 1)); printf("[%d] The result of the (shifted) communication check for block (0x%zx, 0x%zx) is: %d\n", rank, start, stop, comm); } }