This source file includes following definitions.
- mca_vprotocol_example_add_comm
- mca_vprotocol_example_del_comm
1
2
3
4
5
6
7
8
9
10
11 #include "../pml_v.h"
12 #include "vprotocol_example.h"
13
14 int mca_vprotocol_example_add_comm(struct ompi_communicator_t* comm)
15 {
16 V_OUTPUT_VERBOSE(30, "vprotocol_example_add_comm(%d)", comm->c_contextid);
17 return mca_pml_v.host_pml.pml_add_comm(comm);
18 }
19
20 int mca_vprotocol_example_del_comm(struct ompi_communicator_t* comm)
21 {
22 V_OUTPUT_VERBOSE(30, "vprotocol_example_del_comm(%d)", comm->c_contextid);
23 return mca_pml_v.host_pml.pml_del_comm(comm);
24 }