Skip to content

Commit

Permalink
fix review
Browse files Browse the repository at this point in the history
  • Loading branch information
jmorice91 committed Dec 4, 2024
1 parent 5f87e2d commit 53d0076
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 9 deletions.
6 changes: 3 additions & 3 deletions plugins/decl_hdf5/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ Julien Bigot - CEA ([email protected])
* Run tests that depend on the filesystem in their own temporary directory
* Buildsystem

Yacine Ould Rouis - CNRS ([email protected])
* contribution to feature design, validation

Jacques Morice - CEA ([email protected])
* contribution to feature improvement, validation

Yacine Ould Rouis - CNRS ([email protected])
* contribution to feature design, validation

Thomas Padioleau - CEA ([email protected])
* Fixed a bug with parallel file deletion

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@

#define FILE "mpi_independent_test.h5"

/*
Test : Read a file using hdf5 parallel version with the option independent parallel pointer.
/**
* Test : Read a file using hdf5 parallel version with the option independent parallel pointer.
*/

int main(int argc, char* argv[])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@

#define FILE "mpi_independent_test.h5"

/*
Test : Write a file using hdf5 parallel version with the option independent parallel pointer.
/**
* Test : Write a file using hdf5 parallel version with the option independent parallel pointer.
*/

int main(int argc, char* argv[])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@

#define FILE "mpi_test.h5"

/**
* Test : Read a file using hdf5 parallel version with the option collective parallel pointer.
*/

int main(int argc, char* argv[])
{
printf("HDF5 mpi_read_test started\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@

#define FILE "mpi_test.h5"

/**
* Test : Write a file using hdf5 parallel version with the option collective parallel pointer.
*/

int main(int argc, char* argv[])
{
printf("HDF5 mpi_write_test started\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,13 @@

#define FILE "mpi_independent_test.h5"

/**
* Test : Read a file using PDI with the plugin decl_hdf5 in parallel with the option mpio: INDEPENDENT.
*/

int main(int argc, char* argv[])
{
printf("PDI mpi_read_test started\n");
printf("PDI mpi_independent_read_test started\n");
MPI_Init(&argc, &argv);
int mpi_rank;
MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,13 @@

#define FILE "mpi_independent_test.h5"

/**
* Test : Write a file using PDI with the plugin decl_hdf5 in parallel with the option mpio: INDEPENDENT.
*/

int main(int argc, char* argv[])
{
printf("PDI mpi_write_test started\n");
printf("PDI mpi_independent_write_test started\n");
MPI_Init(&argc, &argv);
int mpi_rank;
MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@

#define FILE "mpi_test.h5"

/**
* Test : Write a file using PDI with the plugin decl_hdf5 in parallel with the option mpio: COLLECTIVE(DEFAULT).
*/

int main(int argc, char* argv[])
{
printf("PDI mpi_write_test started\n");
Expand Down

0 comments on commit 53d0076

Please sign in to comment.