xref: /phasta/phastaIO/phiompi.h (revision e8a3eca43f1afb732d4630e249e3f511e850d431)
1 #ifndef PHIOMPI_H
2 #define PHIOMPI_H
3 
4 #include<stddef.h> /* size_t */
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 int phio_self();
10 int phio_peers();
11 size_t phio_min_sizet(size_t val);
12 size_t phio_max_sizet(size_t val);
13 size_t phio_add_sizet(size_t val);
14 double phio_min_double(double val);
15 double phio_max_double(double val);
16 double phio_add_double(double val);
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #endif
22