X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/62256b5a77a259521fd868d6c5aba0cf4f3df5dc..c4c82977e0a105cdf7b04010ddd21bbf15dced4d:/teshsuite/smpi/io-all-at/io-all-at.c diff --git a/teshsuite/smpi/io-all-at/io-all-at.c b/teshsuite/smpi/io-all-at/io-all-at.c index 3c2963b1d1..00481d085c 100644 --- a/teshsuite/smpi/io-all-at/io-all-at.c +++ b/teshsuite/smpi/io-all-at/io-all-at.c @@ -1,3 +1,8 @@ +/* Copyright (c) 2019-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. */ + #include "mpi.h" #include #include @@ -11,24 +16,23 @@ int main( int argc, char *argv[] ) int errs = 0; int size; int rank; - int i; int* buf; int count; MPI_File fh; MPI_Comm comm; MPI_Status status; - + MPI_Init( &argc, &argv ); - + comm = MPI_COMM_WORLD; MPI_File_open( comm, (char*)"/scratch/testfile", MPI_MODE_RDWR | MPI_MODE_CREATE | MPI_MODE_DELETE_ON_CLOSE, MPI_INFO_NULL, &fh ); MPI_Comm_size( comm, &size ); MPI_Comm_rank( comm, &rank ); buf = (int *)malloc( 10 * sizeof(int) ); buf[0] = rank; - + /* Write to file */ - MPI_File_seek( fh, sizeof(int)*rank, MPI_SEEK_SET ); + MPI_File_seek(fh, sizeof(int) * rank, MPI_SEEK_SET); MPI_File_write_all( fh, buf, 1, MPI_INT, &status ); MPI_Get_count( &status, MPI_INT, &count ); if (count != 1) { @@ -61,16 +65,17 @@ int main( int argc, char *argv[] ) MPI_Barrier( comm ); - for (i=0; i