reader_py.cc 5.0 KB
Newer Older
S
sneaxiy 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// 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 "paddle/fluid/pybind/reader_py.h"
S
sneaxiy 已提交
16
#include <memory>
S
sneaxiy 已提交
17
#include <string>
S
sneaxiy 已提交
18 19
#include <unordered_map>
#include <utility>
S
sneaxiy 已提交
20 21 22 23 24 25 26 27 28 29
#include <vector>
#include "paddle/fluid/framework/reader.h"
#include "paddle/fluid/operators/reader/buffered_reader.h"
#include "paddle/fluid/operators/reader/py_reader.h"
#include "paddle/fluid/platform/place.h"
#include "pybind11/stl.h"

namespace paddle {
namespace pybind {

S
sneaxiy 已提交
30 31
class MultiDeviceFeedReader {
 public:
S
sneaxiy 已提交
32 33
  using ResultDictList =
      std::vector<std::unordered_map<std::string, framework::LoDTensor>>;
34
  using ResultList = std::vector<std::vector<framework::LoDTensor>>;
S
sneaxiy 已提交
35

S
sneaxiy 已提交
36 37 38 39 40
  MultiDeviceFeedReader(
      const std::shared_ptr<operators::reader::LoDTensorBlockingQueue> &queue,
      const std::vector<std::string> &names,
      const std::vector<platform::Place> &dst_places, bool use_double_buffer)
      : queue_(queue),
S
sneaxiy 已提交
41
        names_(names),
S
sneaxiy 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
        pool_(new ::ThreadPool(dst_places.size())) {
    std::shared_ptr<framework::ReaderBase> reader(
        new operators::reader::PyReader(queue));

    readers_.reserve(dst_places.size());
    for (auto &p : dst_places) {
      auto *holder = new framework::ReaderHolder();
      if (use_double_buffer) {
        holder->Reset(
            framework::MakeDecoratedReader<operators::reader::BufferedReader>(
                reader, p, 2));
      } else {
        if (platform::is_gpu_place(p)) {
          PADDLE_THROW(
              "Place cannot be CUDAPlace when use_double_buffer is False");
        }
        holder->Reset(reader);
      }
      readers_.emplace_back(holder);
    }
S
sneaxiy 已提交
62

S
sneaxiy 已提交
63 64 65 66
    futures_.resize(dst_places.size());
    ret_.resize(dst_places.size());
    ReadAsync();
  }
S
sneaxiy 已提交
67

S
sneaxiy 已提交
68 69
  ResultDictList ReadNext() {
    bool success = WaitFutures();
S
sneaxiy 已提交
70

S
sneaxiy 已提交
71 72
    if (!success) {
      return {};
S
sneaxiy 已提交
73 74
    }

S
sneaxiy 已提交
75 76 77 78 79
    ResultDictList result(ret_.size());
    for (size_t i = 0; i < ret_.size(); ++i) {
      for (size_t j = 0; j < names_.size(); ++j) {
        result[i].emplace(names_[j], std::move(ret_[i][j]));
      }
S
sneaxiy 已提交
80
    }
S
sneaxiy 已提交
81 82
    ReadAsync();
    return result;
S
sneaxiy 已提交
83 84
  }

85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
  ResultList ReadNextList() {
    bool success = WaitFutures();
    if (!success) {
      return {};
    }

    ResultList result;
    result.reserve(ret_.size());
    for (size_t i = 0; i < ret_.size(); ++i) {
      result.emplace_back(std::move(ret_[i]));
    }
    ReadAsync();
    return result;
  }

S
sneaxiy 已提交
100 101 102 103 104 105 106 107 108 109
  void Reset() {
    Shutdown();
    Start();
    ReadAsync();
  }

  ~MultiDeviceFeedReader() {
    queue_->Close();
    pool_.reset();
  }
S
sneaxiy 已提交
110 111

 private:
S
sneaxiy 已提交
112 113 114 115 116 117 118
  bool WaitFutures() {
    bool success = true;
    for (auto &f : futures_) {
      success &= f.get();
    }
    return success;
  }
S
sneaxiy 已提交
119

S
sneaxiy 已提交
120 121
  void Shutdown() {
    for (auto &r : readers_) r->Shutdown();
S
sneaxiy 已提交
122
  }
S
sneaxiy 已提交
123 124 125

  void Start() {
    for (auto &r : readers_) r->Start();
S
sneaxiy 已提交
126 127
  }

S
sneaxiy 已提交
128 129 130 131 132 133 134 135 136
  void ReadAsync() {
    for (size_t i = 0; i < readers_.size(); ++i) {
      futures_[i] = pool_->enqueue([this, i] {
        readers_[i]->ReadNext(&ret_[i]);
        return !ret_[i].empty();
      });
    }
  }

S
sneaxiy 已提交
137
  std::shared_ptr<operators::reader::LoDTensorBlockingQueue> queue_;
S
sneaxiy 已提交
138 139 140 141
  std::vector<std::string> names_;
  std::unique_ptr<::ThreadPool> pool_;

  std::vector<std::unique_ptr<framework::ReaderHolder>> readers_;
S
sneaxiy 已提交
142

S
sneaxiy 已提交
143 144 145
  std::vector<std::future<bool>> futures_;
  std::vector<std::vector<framework::LoDTensor>> ret_;
};
S
sneaxiy 已提交
146 147 148 149 150 151 152 153 154 155 156 157

namespace py = pybind11;

void BindReader(py::module *module) {
  auto &m = *module;

  namespace reader = ::paddle::operators::reader;

  py::class_<framework::ReaderHolder>(m, "Reader", "")
      .def("start", &framework::ReaderHolder::Start)
      .def("reset", &framework::ReaderHolder::ResetAll);

S
sneaxiy 已提交
158 159
  py::class_<MultiDeviceFeedReader>(m, "MultiDeviceFeedReader", "")
      .def("read_next", &MultiDeviceFeedReader::ReadNext,
S
sneaxiy 已提交
160
           py::call_guard<py::gil_scoped_release>())
161 162
      .def("read_next_list", &MultiDeviceFeedReader::ReadNextList,
           py::call_guard<py::gil_scoped_release>())
S
sneaxiy 已提交
163
      .def("reset", &MultiDeviceFeedReader::Reset,
S
sneaxiy 已提交
164 165 166
           py::call_guard<py::gil_scoped_release>());

  m.def("create_py_reader",
S
sneaxiy 已提交
167 168
        [](const std::shared_ptr<operators::reader::LoDTensorBlockingQueue>
               &queue,
S
sneaxiy 已提交
169
           const std::vector<std::string> &names,
S
sneaxiy 已提交
170 171
           const std::vector<platform::Place> &dst_places,
           bool use_double_buffer) {
S
sneaxiy 已提交
172
          return new MultiDeviceFeedReader(queue, names, dst_places,
S
sneaxiy 已提交
173
                                           use_double_buffer);
S
sneaxiy 已提交
174 175 176 177 178 179
        },
        py::return_value_policy::take_ownership);
}

}  // namespace pybind
}  // namespace paddle