From: Martin Quinson Date: Thu, 27 Dec 2018 09:27:51 +0000 (+0100) Subject: Merge branch 'master' of github.com:simgrid/simgrid X-Git-Tag: v3_22~750 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/8937f1426cc4c3bbe77178ce3a9cdc0687263a8e?hp=bfc156b417dd2ff7d9279bc7fc762975a27320bf Merge branch 'master' of github.com:simgrid/simgrid --- 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 0e98c0c69e..11b0edc60f 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 @@ -33,16 +33,6 @@ static int check_all(uint8_t *buf, size_t start, size_t stop, uint8_t value) { return occ == stop-start; } -// Return true iff "enough" elements are equal to (i+value)%256 between buf[start] and buf[stop-1]. -static int check_enough(uint8_t *buf, size_t start, size_t stop, uint8_t value) { - int page_size = 0x1000; - size_t size = stop-start; - if(size <= 2*page_size) // we are not sure to have a whole page that is shared - return 1; - size_t occ = count_all(buf, start, stop, value); - return occ >= size - 2*page_size; -} - int main(int argc, char *argv[]) { MPI_Init(&argc, &argv);