Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / teshsuite / smpi / io-all / io-all.c
1 /* Copyright (c) 2019-2023. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "mpi.h"
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <string.h>
10 #include <memory.h>
11
12 /* Test reading and writing zero bytes (set status correctly) */
13
14 int main( int argc, char *argv[] )
15 {
16     int errs = 0;
17     int size;
18     int rank;
19     int* buf;
20     int count;
21     MPI_File fh;
22     MPI_Comm comm;
23     MPI_Status status;
24
25     MPI_Init( &argc, &argv );
26
27     comm = MPI_COMM_WORLD;
28     MPI_File_open( comm, (char*)"/scratch/testfile", MPI_MODE_RDWR | MPI_MODE_CREATE | MPI_MODE_DELETE_ON_CLOSE, MPI_INFO_NULL, &fh );
29     MPI_Comm_size( comm, &size );
30     MPI_Comm_rank( comm, &rank );
31     buf = (int *)malloc( 10 * sizeof(int) );
32     buf[0] = rank;
33
34     /* Write to file */
35     MPI_File_seek(fh, sizeof(int) * rank, MPI_SEEK_SET);
36     MPI_File_write_all( fh, buf, 1, MPI_INT, &status );
37     MPI_Get_count( &status, MPI_INT, &count );
38     if (count != 1) {
39         errs++;
40         fprintf( stderr, "Wrong count (%d) on write\n", count );fflush(stderr);
41     }
42     /* Write to file, overlapping */
43     MPI_File_seek(fh, sizeof(int) * rank, MPI_SEEK_SET);
44     MPI_File_write_all( fh, buf, 10, MPI_INT, &status );
45     MPI_Get_count( &status, MPI_INT, &count );
46     if (count != 10) {
47         errs++;
48         fprintf( stderr, "Wrong count (%d) on write\n", count );fflush(stderr);
49     }
50     /* Read nothing (check status) */
51     memset( &status, 0xff, sizeof(MPI_Status) );
52     MPI_File_read_all( fh, buf, 0, MPI_INT, &status );
53     MPI_Get_count( &status, MPI_INT, &count );
54     if (count != 0) {
55         errs++;
56         fprintf( stderr, "Count not zero (%d) on read\n", count );fflush(stderr);
57     }
58
59     /* Write nothing (check status) */
60     memset( &status, 0xff, sizeof(MPI_Status) );
61     MPI_File_write_all( fh, buf, 0, MPI_INT, &status );
62     if (count != 0) {
63         errs++;
64         fprintf( stderr, "Count not zero (%d) on write\n", count );fflush(stderr);
65     }
66
67     MPI_Barrier( comm );
68
69     MPI_File_seek( fh, sizeof(int)*rank, MPI_SEEK_SET );
70     for (int i = 0; i < size; i++)
71       buf[i] = -1;
72     MPI_File_read_all( fh, buf, 10, MPI_INT, &status );
73     // if (buf[0] != rank) {
74         // errs++;
75         // fprintf( stderr, "%d: buf = %d\n", rank, buf[0] );fflush(stderr);
76     // }
77
78     free( buf );
79     MPI_File_close( &fh );
80
81     MPI_Finalize();
82     return errs;
83 }