xref: /phasta/phastaIO/phiompi.h (revision f42e0444da478b8804248904e7be4eb4355d183d)
1 #ifndef PHIOMPI_H
2 #define PHIOMPI_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 int phio_self();
8 int phio_peers();
9 int phio_min_int(int val);
10 int phio_max_int(int val);
11 long phio_add_long(long val);
12 double phio_min_double(double val);
13 double phio_max_double(double val);
14 double phio_add_double(double val);
15 #ifdef __cplusplus
16 }
17 #endif
18 
19 #endif
20