bind_fleet_executor.cc 2.1 KB
Newer Older
L
LiYuRio 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Copyright (c) 2021 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/bind_fleet_executor.h"
#include <pybind11/stl.h>
#include "paddle/fluid/distributed/fleet_executor/fleet_executor.h"
L
LiYuRio 已提交
18
#include "paddle/fluid/distributed/fleet_executor/task_node.h"
19
#include "paddle/fluid/framework/operator.h"
L
LiYuRio 已提交
20
#include "paddle/fluid/framework/program_desc.h"
21 22
#include "paddle/fluid/framework/scope.h"
#include "paddle/fluid/platform/place.h"
L
LiYuRio 已提交
23 24 25 26 27 28 29

namespace py = pybind11;

namespace paddle {
namespace pybind {

using paddle::distributed::FleetExecutor;
L
LiYuRio 已提交
30
using paddle::distributed::TaskNode;
31
using paddle::framework::OpDesc;
L
LiYuRio 已提交
32 33 34 35 36

void BindFleetExecutor(py::module* m) {
  py::class_<FleetExecutor>(*m, "FleetExecutor")
      .def(py::init<const std::string&>())
      .def("init", &FleetExecutor::Init)
37 38
      .def("run", &FleetExecutor::Run,
           py::call_guard<py::gil_scoped_release>());
L
LiYuRio 已提交
39 40 41

  py::class_<TaskNode>(*m, "TaskNode")
      .def(py::init<const framework::ProgramDesc&, int64_t, int64_t, int64_t>())
42 43
      .def(py::init<int32_t, const std::vector<framework::OpDesc*>&, int64_t,
                    int64_t, int64_t, int64_t>())
L
LiYuRio 已提交
44 45
      .def("task_id", &TaskNode::task_id)
      .def("add_upstream_task", &TaskNode::AddUpstreamTask)
46 47 48 49 50
      .def("add_downstream_task", &TaskNode::AddDownstreamTask)
      .def("set_run_pre_steps", &TaskNode::SetRunPerSteps)
      .def("set_run_at_offset", &TaskNode::SetRunAtOffset)
      .def("set_type", &TaskNode::SetType)
      .def("role", &TaskNode::role);
L
LiYuRio 已提交
51 52 53
}
}  // namespace pybind
}  // namespace paddle