summaryrefslogtreecommitdiffstats
path: root/config/cmake_ext_mod/FindMPI/test_mpi.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-11-01 20:06:46 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-11-01 20:06:46 (GMT)
commit21874ce5c201b2be7305599434a156b9fbbcfc89 (patch)
tree64003c755967358ee575f73653c026f57ce0e4dc /config/cmake_ext_mod/FindMPI/test_mpi.c
parentf190509675e545bdda4e53d561c30f58a5f5ff4a (diff)
downloadhdf5-21874ce5c201b2be7305599434a156b9fbbcfc89.zip
hdf5-21874ce5c201b2be7305599434a156b9fbbcfc89.tar.gz
hdf5-21874ce5c201b2be7305599434a156b9fbbcfc89.tar.bz2
Add back Find module and add support files
Diffstat (limited to 'config/cmake_ext_mod/FindMPI/test_mpi.c')
-rw-r--r--config/cmake_ext_mod/FindMPI/test_mpi.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/config/cmake_ext_mod/FindMPI/test_mpi.c b/config/cmake_ext_mod/FindMPI/test_mpi.c
new file mode 100644
index 0000000..b8a308a
--- /dev/null
+++ b/config/cmake_ext_mod/FindMPI/test_mpi.c
@@ -0,0 +1,37 @@
+#include <mpi.h>
+
+#ifdef __cplusplus
+#include <cstdio>
+#else
+#include <stdio.h>
+#endif
+
+#if defined(MPI_VERSION) && defined(MPI_SUBVERSION)
+const char mpiver_str[] = { 'I', 'N',
+ 'F', 'O',
+ ':', 'M',
+ 'P', 'I',
+ '-', 'V',
+ 'E', 'R',
+ '[', ('0' + MPI_VERSION),
+ '.', ('0' + MPI_SUBVERSION),
+ ']', '\0' };
+#endif
+
+int main(int argc, char* argv[])
+{
+#if defined(MPI_VERSION) && defined(MPI_SUBVERSION)
+#ifdef __cplusplus
+ std::puts(mpiver_str);
+#else
+ puts(mpiver_str);
+#endif
+#endif
+#ifdef TEST_MPI_MPICXX
+ MPI::MPI_Init(&argc, &argv);
+ MPI::MPI_Finalize();
+#else
+ MPI_Init(&argc, &argv);
+ MPI_Finalize();
+#endif
+}