- H5SetPropFileMPIO() renamed to H5SetPropFileMPIOCollective()
This commit is contained in:
2016-03-18 11:04:11 +01:00
parent b284ad9776
commit 91e7ed8c5b
4 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -241,8 +241,8 @@ void h5b_test_read1(void)
TEST("Opening file once, read-only");
h5_prop_t props = H5CreateFileProp ();
status = H5SetPropFileMPIO (props, &comm);
RETURN(status, H5_SUCCESS, "H5SetPropFileMPIO");
status = H5SetPropFileMPIOCollective (props, &comm);
RETURN(status, H5_SUCCESS, "H5SetPropFileMPIOCollective");
status = H5SetPropFileThrottle (props, 2);
RETURN(status, H5_SUCCESS, "H5SetPropFileThrottle");
+2 -2
View File
@@ -183,8 +183,8 @@ void h5b_test_write1(void)
TEST("Opening file once, write-truncate");
h5_prop_t props = H5CreateFileProp ();
status = H5SetPropFileMPIO (props, &comm);
RETURN(status, H5_SUCCESS, "H5SetPropFileMPIO");
status = H5SetPropFileMPIOCollective (props, &comm);
RETURN(status, H5_SUCCESS, "H5SetPropFileMPIOCollective");
status = H5SetPropFileThrottle (props, 2);
RETURN(status, H5_SUCCESS, "H5SetPropFileThrottle");
+2 -2
View File
@@ -503,8 +503,8 @@ void h5u_test_read4(void)
TEST("Opening file twice, read-only, MPI-IO Independent VFD");
h5_prop_t props = H5CreateFileProp ();
status = H5SetPropFileMPIO (props, &comm);
RETURN(status, H5_SUCCESS, "H5SetPropFileMPIO");
status = H5SetPropFileMPIOCollective (props, &comm);
RETURN(status, H5_SUCCESS, "H5SetPropFileMPIOCollective");
status = H5SetPropFileThrottle (props, 2);
RETURN(status, H5_SUCCESS, "H5SetPropFileThrottle");
+8 -8
View File
@@ -358,8 +358,8 @@ void h5u_test_write1(void)
TEST("Opening file once, write-truncate");
h5_prop_t props = H5CreateFileProp ();
status = H5SetPropFileMPIO (props, &comm);
RETURN(status, H5_SUCCESS, "H5SetPropFileMPIO");
status = H5SetPropFileMPIOCollective (props, &comm);
RETURN(status, H5_SUCCESS, "H5SetPropFileMPIOCollective");
status = H5SetPropFileThrottle (props, 2);
RETURN(status, H5_SUCCESS, "H5SetPropFileThrottle");
@@ -386,8 +386,8 @@ void h5u_test_write2(void)
TEST("Opening file twice, write-append + read-only");
h5_prop_t props = H5CreateFileProp ();
status = H5SetPropFileMPIO (props, &comm);
RETURN(status, H5_SUCCESS, "H5SetPropFileMPIO");
status = H5SetPropFileMPIOCollective (props, &comm);
RETURN(status, H5_SUCCESS, "H5SetPropFileMPIOCollective");
status = H5SetPropFileThrottle (props, 2);
RETURN(status, H5_SUCCESS, "H5SetPropFileThrottle");
@@ -420,8 +420,8 @@ void h5u_test_write3(void)
TEST("Opening file once, write-truncate, MPI-POSIX VFD");
h5_prop_t props = H5CreateFileProp ();
status = H5SetPropFileMPIO (props, &comm);
RETURN(status, H5_SUCCESS, "H5SetPropFileMPIO");
status = H5SetPropFileMPIOCollective (props, &comm);
RETURN(status, H5_SUCCESS, "H5SetPropFileMPIOCollective");
status = H5SetPropFileThrottle (props, 2);
RETURN(status, H5_SUCCESS, "H5SetPropFileThrottle");
@@ -455,8 +455,8 @@ void h5u_test_write4(void)
TEST("Opening file twice, write-append + read-only, MPI-IO Independent VFD");
props = H5CreateFileProp ();
status = H5SetPropFileMPIO (props, &comm);
RETURN(status, H5_SUCCESS, "H5SetPropFileMPIO");
status = H5SetPropFileMPIOCollective (props, &comm);
RETURN(status, H5_SUCCESS, "H5SetPropFileMPIOCollective");
status = H5SetPropFileThrottle (props, 2);
RETURN(status, H5_SUCCESS, "H5SetPropFileThrottle");