box_helper_py.cc 3.6 KB
Newer Older
H
hutuxian 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/* 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. */
#include <fcntl.h>

#ifdef _POSIX_C_SOURCE
#undef _POSIX_C_SOURCE
#endif

#ifdef _XOPEN_SOURCE
#undef _XOPEN_SOURCE
#endif

#include <memory>
#include <string>
#include <vector>

#include "paddle/fluid/framework/data_feed.h"
#include "paddle/fluid/framework/data_feed.pb.h"
#include "paddle/fluid/framework/fleet/box_wrapper.h"
#include "paddle/fluid/pybind/box_helper_py.h"
H
hutuxian 已提交
32 33 34
#ifdef PADDLE_WITH_BOX_PS
#include <boxps_public.h>
#endif
H
hutuxian 已提交
35 36 37 38 39 40 41 42 43 44 45

namespace py = pybind11;

namespace paddle {
namespace pybind {
void BindBoxHelper(py::module* m) {
  py::class_<framework::BoxHelper, std::shared_ptr<framework::BoxHelper>>(
      *m, "BoxPS")
      .def(py::init([](paddle::framework::Dataset* dataset) {
        return std::make_shared<paddle::framework::BoxHelper>(dataset);
      }))
H
hutuxian 已提交
46 47
      .def("set_date", &framework::BoxHelper::SetDate,
           py::call_guard<py::gil_scoped_release>())
H
hutuxian 已提交
48 49 50 51 52 53 54 55 56 57
      .def("begin_pass", &framework::BoxHelper::BeginPass,
           py::call_guard<py::gil_scoped_release>())
      .def("end_pass", &framework::BoxHelper::EndPass,
           py::call_guard<py::gil_scoped_release>())
      .def("wait_feed_pass_done", &framework::BoxHelper::WaitFeedPassDone,
           py::call_guard<py::gil_scoped_release>())
      .def("preload_into_memory", &framework::BoxHelper::PreLoadIntoMemory,
           py::call_guard<py::gil_scoped_release>())
      .def("load_into_memory", &framework::BoxHelper::LoadIntoMemory,
           py::call_guard<py::gil_scoped_release>());
H
hutuxian 已提交
58
}  // end BoxHelper
H
hutuxian 已提交
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83

#ifdef PADDLE_WITH_BOX_PS
void BindBoxWrapper(py::module* m) {
  py::class_<framework::BoxWrapper, std::shared_ptr<framework::BoxWrapper>>(
      *m, "BoxWrapper")
      .def(py::init([]() {
        // return std::make_shared<paddle::framework::BoxHelper>(dataset);
        return framework::BoxWrapper::GetInstance();
      }))
      .def("save_base", &framework::BoxWrapper::SaveBase,
           py::call_guard<py::gil_scoped_release>())
      .def("feed_pass", &framework::BoxWrapper::FeedPass,
           py::call_guard<py::gil_scoped_release>())
      .def("save_delta", &framework::BoxWrapper::SaveDelta,
           py::call_guard<py::gil_scoped_release>())
      .def("initialize_gpu", &framework::BoxWrapper::InitializeGPU,
           py::call_guard<py::gil_scoped_release>())
      .def("init_metric", &framework::BoxWrapper::InitMetric,
           py::call_guard<py::gil_scoped_release>())
      .def("get_metric_msg", &framework::BoxWrapper::GetMetricMsg,
           py::call_guard<py::gil_scoped_release>())
      .def("get_metric_name_list", &framework::BoxWrapper::GetMetricNameList,
           py::call_guard<py::gil_scoped_release>())
      .def("flip_pass_flag", &framework::BoxWrapper::FlipPassFlag,
           py::call_guard<py::gil_scoped_release>())
H
hutuxian 已提交
84 85
      .def("init_afs_api", &framework::BoxWrapper::InitAfsAPI,
           py::call_guard<py::gil_scoped_release>())
H
hutuxian 已提交
86 87 88 89 90
      .def("finalize", &framework::BoxWrapper::Finalize,
           py::call_guard<py::gil_scoped_release>());
}  // end BoxWrapper
#endif

H
hutuxian 已提交
91 92
}  // end namespace pybind
}  // end namespace paddle