summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/h5dsm_attr_create.c2
-rw-r--r--examples/h5dsm_attr_open.c2
-rw-r--r--examples/h5dsm_attr_read.c2
-rw-r--r--examples/h5dsm_attr_write.c2
-rw-r--r--examples/h5dsm_dset_create.c2
-rw-r--r--examples/h5dsm_dset_open.c2
-rw-r--r--examples/h5dsm_dset_r1m.c2
-rw-r--r--examples/h5dsm_dset_read.c2
-rw-r--r--examples/h5dsm_dset_rpartial.c2
-rw-r--r--examples/h5dsm_dset_w1m.c2
-rw-r--r--examples/h5dsm_dset_wpartial.c2
-rw-r--r--examples/h5dsm_dset_write.c2
-rw-r--r--examples/h5dsm_file_create.c2
-rw-r--r--examples/h5dsm_file_open.c2
-rw-r--r--examples/h5dsm_group_create.c2
-rw-r--r--examples/h5dsm_group_open.c2
-rw-r--r--examples/h5dsm_link_exists.c2
-rw-r--r--examples/h5dsm_slink_create.c2
-rw-r--r--examples/h5dsm_ttconv.c2
19 files changed, 38 insertions, 0 deletions
diff --git a/examples/h5dsm_attr_create.c b/examples/h5dsm_attr_create.c
index 56e8988..d4281b4 100644
--- a/examples/h5dsm_attr_create.c
+++ b/examples/h5dsm_attr_create.c
@@ -25,6 +25,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Set up dataspace */
if((space = H5Screate_simple(2, dims, NULL)) < 0)
diff --git a/examples/h5dsm_attr_open.c b/examples/h5dsm_attr_open.c
index 0ab686d..adc0ce2 100644
--- a/examples/h5dsm_attr_open.c
+++ b/examples/h5dsm_attr_open.c
@@ -24,6 +24,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Open snapshot if specified */
if(argc == 7) {
diff --git a/examples/h5dsm_attr_read.c b/examples/h5dsm_attr_read.c
index eab2d11..8059ba3 100644
--- a/examples/h5dsm_attr_read.c
+++ b/examples/h5dsm_attr_read.c
@@ -30,6 +30,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Open snapshot if specified */
if(argc == 7) {
diff --git a/examples/h5dsm_attr_write.c b/examples/h5dsm_attr_write.c
index 4b83752..1b233d2 100644
--- a/examples/h5dsm_attr_write.c
+++ b/examples/h5dsm_attr_write.c
@@ -30,6 +30,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Open file */
if((file = H5Fopen(argv[2], H5F_ACC_RDWR, fapl)) < 0)
diff --git a/examples/h5dsm_dset_create.c b/examples/h5dsm_dset_create.c
index ad0b33d..8e67b42 100644
--- a/examples/h5dsm_dset_create.c
+++ b/examples/h5dsm_dset_create.c
@@ -25,6 +25,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Set up dataspace */
if((space = H5Screate_simple(2, dims, NULL)) < 0)
diff --git a/examples/h5dsm_dset_open.c b/examples/h5dsm_dset_open.c
index 3c8f6e1..0cc6f62 100644
--- a/examples/h5dsm_dset_open.c
+++ b/examples/h5dsm_dset_open.c
@@ -27,6 +27,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Open snapshot if specified */
if(argc == 5) {
diff --git a/examples/h5dsm_dset_r1m.c b/examples/h5dsm_dset_r1m.c
index 4f1899c..ff92bcb 100644
--- a/examples/h5dsm_dset_r1m.c
+++ b/examples/h5dsm_dset_r1m.c
@@ -32,6 +32,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Open snapshot if specified */
if(argc == 5) {
diff --git a/examples/h5dsm_dset_read.c b/examples/h5dsm_dset_read.c
index c2b26f9..f6f7c93 100644
--- a/examples/h5dsm_dset_read.c
+++ b/examples/h5dsm_dset_read.c
@@ -30,6 +30,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Open snapshot if specified */
if(argc == 5) {
diff --git a/examples/h5dsm_dset_rpartial.c b/examples/h5dsm_dset_rpartial.c
index a4ebced..7548e7b 100644
--- a/examples/h5dsm_dset_rpartial.c
+++ b/examples/h5dsm_dset_rpartial.c
@@ -41,6 +41,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Open snapshot if specified */
if(argc == 5) {
diff --git a/examples/h5dsm_dset_w1m.c b/examples/h5dsm_dset_w1m.c
index eb5f4be..ddf3221 100644
--- a/examples/h5dsm_dset_w1m.c
+++ b/examples/h5dsm_dset_w1m.c
@@ -32,6 +32,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Create file */
if((file = H5Fcreate(argv[2], H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0)
diff --git a/examples/h5dsm_dset_wpartial.c b/examples/h5dsm_dset_wpartial.c
index 6382551..eca3d42 100644
--- a/examples/h5dsm_dset_wpartial.c
+++ b/examples/h5dsm_dset_wpartial.c
@@ -41,6 +41,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Open file */
if((file = H5Fopen(argv[2], H5F_ACC_RDWR, fapl)) < 0)
diff --git a/examples/h5dsm_dset_write.c b/examples/h5dsm_dset_write.c
index 7773a25..3e1ceb0 100644
--- a/examples/h5dsm_dset_write.c
+++ b/examples/h5dsm_dset_write.c
@@ -30,6 +30,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Open file */
if((file = H5Fopen(argv[2], H5F_ACC_RDWR, fapl)) < 0)
diff --git a/examples/h5dsm_file_create.c b/examples/h5dsm_file_create.c
index f989c7e..7c682e8 100644
--- a/examples/h5dsm_file_create.c
+++ b/examples/h5dsm_file_create.c
@@ -23,6 +23,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Create file */
if((file = H5Fcreate(argv[2], H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0)
diff --git a/examples/h5dsm_file_open.c b/examples/h5dsm_file_open.c
index ce5905a..8195398 100644
--- a/examples/h5dsm_file_open.c
+++ b/examples/h5dsm_file_open.c
@@ -25,6 +25,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Open snapshot if specified */
if(argc == 4) {
diff --git a/examples/h5dsm_group_create.c b/examples/h5dsm_group_create.c
index d9a5d42..6b70d40 100644
--- a/examples/h5dsm_group_create.c
+++ b/examples/h5dsm_group_create.c
@@ -24,6 +24,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Open file */
if((file = H5Fopen(argv[2], H5F_ACC_RDWR, fapl)) < 0)
diff --git a/examples/h5dsm_group_open.c b/examples/h5dsm_group_open.c
index 1ede6de..54ebd92 100644
--- a/examples/h5dsm_group_open.c
+++ b/examples/h5dsm_group_open.c
@@ -25,6 +25,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Open snapshot if specified */
if(argc == 5) {
diff --git a/examples/h5dsm_link_exists.c b/examples/h5dsm_link_exists.c
index 6672aeb..0ed091a 100644
--- a/examples/h5dsm_link_exists.c
+++ b/examples/h5dsm_link_exists.c
@@ -26,6 +26,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Open snapshot if specified */
if(argc == 5) {
diff --git a/examples/h5dsm_slink_create.c b/examples/h5dsm_slink_create.c
index 01862de..755ac39 100644
--- a/examples/h5dsm_slink_create.c
+++ b/examples/h5dsm_slink_create.c
@@ -24,6 +24,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Open file */
if((file = H5Fopen(argv[2], H5F_ACC_RDWR, fapl)) < 0)
diff --git a/examples/h5dsm_ttconv.c b/examples/h5dsm_ttconv.c
index 9f07c31..8fe51d1 100644
--- a/examples/h5dsm_ttconv.c
+++ b/examples/h5dsm_ttconv.c
@@ -56,6 +56,8 @@ int main(int argc, char *argv[]) {
ERROR;
if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL) < 0)
ERROR;
+ if(H5Pset_all_coll_metadata_ops(fapl, true) < 0)
+ ERROR;
/* Create file */
if((file = H5Fcreate(FILE_NAME, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0)