box_helper_py.cc 4.0 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
      .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,
57 58
           py::call_guard<py::gil_scoped_release>())
      .def("slots_shuffle", &framework::BoxHelper::SlotsShuffle,
H
hutuxian 已提交
59
           py::call_guard<py::gil_scoped_release>());
H
hutuxian 已提交
60
}  // end BoxHelper
H
hutuxian 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73

#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>())
74 75
      .def("set_test_mode", &framework::BoxWrapper::SetTestMode,
           py::call_guard<py::gil_scoped_release>())
H
hutuxian 已提交
76 77
      .def("save_delta", &framework::BoxWrapper::SaveDelta,
           py::call_guard<py::gil_scoped_release>())
78 79
      .def("initialize_gpu_and_load_model",
           &framework::BoxWrapper::InitializeGPUAndLoadModel,
H
hutuxian 已提交
80
           py::call_guard<py::gil_scoped_release>())
81 82
      .def("initialize_auc_runner", &framework::BoxWrapper::InitializeAucRunner,
           py::call_guard<py::gil_scoped_release>())
H
hutuxian 已提交
83 84 85 86 87 88
      .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>())
89
      .def("flip_phase", &framework::BoxWrapper::FlipPhase,
H
hutuxian 已提交
90
           py::call_guard<py::gil_scoped_release>())
H
hutuxian 已提交
91 92
      .def("init_afs_api", &framework::BoxWrapper::InitAfsAPI,
           py::call_guard<py::gil_scoped_release>())
H
hutuxian 已提交
93 94 95 96 97
      .def("finalize", &framework::BoxWrapper::Finalize,
           py::call_guard<py::gil_scoped_release>());
}  // end BoxWrapper
#endif

H
hutuxian 已提交
98 99
}  // end namespace pybind
}  // end namespace paddle