Skip to content
Snippets Groups Projects
Commit 101558f4 authored by Anna Wellmann's avatar Anna Wellmann
Browse files

Merge branch 'develop' into 'develop'

Adapt Python bindings to renamed communicator

See merge request irmb/VirtualFluids_dev!236
parents 48ba583c 15a80f55
No related branches found
No related tags found
1 merge request!236Adapt Python bindings to renamed communicator
......@@ -132,10 +132,10 @@ class BoundaryConditionFactory:
def set_stress_boundary_condition(self, boundary_condition_type) -> None: ...
def set_velocity_boundary_condition(self, boundary_condition_type) -> None: ...
class Communicator:
class MpiCommunicator:
def __init__(self, *args, **kwargs) -> None: ...
@staticmethod
def get_instance() -> Communicator: ...
def get_instance() -> MpiCommunicator: ...
def get_number_of_process(self) -> int: ...
def get_pid(self) -> int: ...
......
......@@ -39,7 +39,7 @@ namespace communicator
void makeModule(py::module_ &parentModule)
{
py::class_<vf::gpu::MpiCommunicator, std::unique_ptr<vf::gpu::MpiCommunicator, py::nodelete>>(parentModule, "Communicator")
py::class_<vf::gpu::MpiCommunicator, std::unique_ptr<vf::gpu::MpiCommunicator, py::nodelete>>(parentModule, "MpiCommunicator")
.def_static("get_instance", &vf::gpu::MpiCommunicator::getInstance, py::return_value_policy::reference)
.def("get_number_of_process", &vf::gpu::MpiCommunicator::getNumberOfProcess)
.def("get_pid", &vf::gpu::MpiCommunicator::getPID);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment