/* Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include "paddle/fluid/pybind/gloo_context_py.h" #include #include #include #include #include #include #include #include #include #include #include #include #include "paddle/fluid/memory/allocation/mmap_allocator.h" #include "paddle/fluid/platform/gloo_context.h" namespace paddle { namespace pybind { namespace py = ::pybind11; // Bind Methods void BindGlooContext(py::module *m) { // define parallel context for gloo #if defined(PADDLE_WITH_GLOO) py::class_ gloo_parallel_strategy( *m, "GlooParallelStrategy", ""); gloo_parallel_strategy.def(py::init()) .def_property("rank_num", [](const platform::GlooParallelStrategy &self) { return self.rank_num; }, [](platform::GlooParallelStrategy &self, int nranks) { self.rank_num = nranks; }) .def_property( "rank", [](const platform::GlooParallelStrategy &self) { return self.rank; }, [](platform::GlooParallelStrategy &self, int rank) { self.rank = rank; }) .def_property( "iface", [](const platform::GlooParallelStrategy &self) { return self.iface; }, [](platform::GlooParallelStrategy &self, const std::string &iface) { self.iface = iface; }) .def_property("prefix", [](const platform::GlooParallelStrategy &self) { return self.prefix; }, [](platform::GlooParallelStrategy &self, const std::string &prefix) { self.prefix = prefix; }) .def_property("init_seconds", [](const platform::GlooParallelStrategy &self) { return self.init_seconds; }, [](platform::GlooParallelStrategy &self, int init_seconds) { self.init_seconds = init_seconds; }) .def_property("run_seconds", [](const platform::GlooParallelStrategy &self) { return self.run_seconds; }, [](platform::GlooParallelStrategy &self, int run_seconds) { self.run_seconds = run_seconds; }) .def_property( "path", [](const platform::GlooParallelStrategy &self) { return self.path; }, [](platform::GlooParallelStrategy &self, const std::string &path) { self.path = path; }) .def_property("fs_name", [](const platform::GlooParallelStrategy &self) { return self.fs_name; }, [](platform::GlooParallelStrategy &self, const std::string &fs_name) { self.fs_name = fs_name; }) .def_property("fs_ugi", [](const platform::GlooParallelStrategy &self) { return self.fs_ugi; }, [](platform::GlooParallelStrategy &self, const std::string &fs_ugi) { self.fs_ugi = fs_ugi; }); py::class_ gloo_ctx(*m, "GlooParallelContext"); gloo_ctx.def(py::init()) .def("init", [](platform::GlooParallelContext &self) { self.Init(); }); #endif } } // namespace pybind } // namespace paddle