Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
32 bits insists of having some timestamps off by 1us ... Hide them.
[simgrid.git] / teshsuite / smpi / io-ordered / io-ordered.c
1 #include "mpi.h"
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include <string.h>
5 #include <memory.h>
6
7 /* Test reading and writing zero bytes (set status correctly) */
8
9 int main( int argc, char *argv[] )
10 {
11     int errs = 0;
12     int size, rank, i, *buf, count;
13     MPI_File fh;
14     MPI_Comm comm;
15     MPI_Status status;
16  
17     MPI_Init( &argc, &argv );
18  
19     comm = MPI_COMM_WORLD;
20     MPI_File_open( comm, (char*)"/scratch/lib/libsimgrid.so.3.6.2", MPI_MODE_RDWR | MPI_MODE_CREATE | MPI_MODE_DELETE_ON_CLOSE, MPI_INFO_NULL, &fh );
21     MPI_Comm_size( comm, &size );
22     MPI_Comm_rank( comm, &rank );
23     buf = (int *)malloc( 10* sizeof(int) );
24     buf[0] = rank;
25  
26     /* Write to file */
27     MPI_File_write_ordered( fh, buf, 10, MPI_INT, &status );
28     MPI_Get_count( &status, MPI_INT, &count );
29     if (count != 10) {
30         errs++;
31         fprintf( stderr, "Wrong count (%d) on write-ordered\n", count );fflush(stderr);
32     }
33     MPI_Barrier( comm );
34     MPI_File_seek_shared( fh, 0, MPI_SEEK_SET );
35     for (i=0; i<size; i++) buf[i] = -1;
36     MPI_File_read_ordered( fh, buf, 10, MPI_INT, &status );
37
38     MPI_Barrier(comm);
39     MPI_File_seek_shared( fh, 0, MPI_SEEK_SET );
40
41     free( buf );
42     MPI_File_close( &fh );
43  
44     MPI_Finalize();
45     return errs;
46 }