communication.cc 3.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2019 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. */

15 16
#include "paddle/fluid/pybind/communication.h"

17 18 19 20 21
#include <Python.h>
#include <pybind11/chrono.h>
#include <pybind11/complex.h>
#include <pybind11/functional.h>
#include <pybind11/stl.h>
22

23
#include <chrono>
24
#include <memory>
25 26
#include <string>

27 28
#include "paddle/phi/core/distributed/comm_context_manager.h"
#include "paddle/phi/core/distributed/store/tcp_store.h"
29 30 31 32 33 34

namespace py = pybind11;

namespace paddle {
namespace pybind {

35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
void BindCommContextManager(py::module *m) {
  auto CommContextManager =
      py::class_<phi::distributed::CommContextManager,
                 std::shared_ptr<phi::distributed::CommContextManager>>(
          *m, "CommContextManager")
#if defined(PADDLE_WITH_RCCL) || defined(PADDLE_WITH_NCCL)
          .def_static(
              "create_nccl_comm_context",
              &phi::distributed::CommContextManager::CreateNCCLCommContext,
              py::call_guard<py::gil_scoped_release>())
#endif
          .def("set_store", &phi::distributed::CommContextManager::SetStore);
}

using TCPStore = phi::distributed::TCPStore;
50

51
void BindTCPStore(py::module *m) {
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
  auto Store = py::class_<phi::distributed::Store,
                          std::shared_ptr<phi::distributed::Store>>(*m, "Store")
                   .def(py::init<>())
                   .def(
                       "set",
                       [](phi::distributed::Store &self,
                          const std::string &key,
                          const std::string &value) {
                         std::vector<uint8_t> data(value.begin(), value.end());
                         self.set(key, data);
                       },
                       py::arg("key"),
                       py::arg("value"),
                       py::call_guard<py::gil_scoped_release>())
                   .def(
                       "get",
                       [](phi::distributed::Store &self,
                          const std::string &key) -> py::bytes {
                         auto data = self.get(key);
                         return py::bytes(reinterpret_cast<char *>(data.data()),
                                          data.size());
                       },
                       py::arg("key"),
                       py::call_guard<py::gil_scoped_release>())
                   .def("add",
                        &phi::distributed::Store::add,
                        py::call_guard<py::gil_scoped_release>())
                   .def("wait",
                        &phi::distributed::Store::wait,
                        py::call_guard<py::gil_scoped_release>());
82 83

  py::class_<TCPStore, std::shared_ptr<TCPStore>>(*m, "TCPStore", Store)
G
gongweibao 已提交
84 85 86 87 88 89 90
      .def(py::init([](std::string hostname,
                       uint16_t port,
                       bool is_master,
                       size_t world_size,
                       int timeout) {
             return std::make_shared<TCPStore>(
                 hostname, port, is_master, world_size, timeout);
91
           }),
G
gongweibao 已提交
92 93 94
           py::arg("hostname"),
           py::arg("port"),
           py::arg("is_master"),
95
           py::arg("world_size"),
G
gongweibao 已提交
96
           py::arg("timeout") = 900,
97
           py::call_guard<py::gil_scoped_release>());
98 99 100 101
}

}  // namespace pybind
}  // namespace paddle