open_files_op.cc 7.2 KB
Newer Older
F
fengjiayi 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
//   Copyright (c) 2018 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.

F
fengjiayi 已提交
15 16
#include <thread>  // NOLINT

17
#include "paddle/fluid/operators/reader/blocking_queue.h"
F
fengjiayi 已提交
18 19 20 21 22 23
#include "paddle/fluid/operators/reader/reader_op_registry.h"

namespace paddle {
namespace operators {
namespace reader {

F
fengjiayi 已提交
24
class MultiFileReader : public framework::ReaderBase {
F
fengjiayi 已提交
25
 public:
F
fengjiayi 已提交
26 27 28
  MultiFileReader(const std::vector<std::string>& file_names,
                  const std::vector<framework::DDim>& dims, size_t thread_num,
                  size_t buffer_size)
29
      : file_names_(file_names), dims_(dims), buffer_size_(buffer_size) {
F
fengjiayi 已提交
30
    prefetchers_.resize(thread_num);
F
fengjiayi 已提交
31 32 33 34 35 36
    StartNewScheduler();
  }

  void ReadNext(std::vector<framework::LoDTensor>* out) override;
  void ReInit() override;

F
fengjiayi 已提交
37
  ~MultiFileReader() { EndScheduler(); }
F
fengjiayi 已提交
38

F
fengjiayi 已提交
39
 private:
F
fengjiayi 已提交
40
  bool HasNext();
F
fengjiayi 已提交
41
  void StartNewScheduler();
F
fengjiayi 已提交
42
  void EndScheduler();
F
fengjiayi 已提交
43
  void ScheduleThreadFunc();
F
fengjiayi 已提交
44
  void PrefetchThreadFunc(std::string file_name, size_t thread_idx);
F
fengjiayi 已提交
45 46 47

  std::vector<std::string> file_names_;
  std::vector<framework::DDim> dims_;
F
fengjiayi 已提交
48 49
  std::thread scheduler_;
  std::vector<std::thread> prefetchers_;
50
  size_t buffer_size_;
51 52 53
  reader::BlockingQueue<size_t>* waiting_file_idx_;
  reader::BlockingQueue<size_t>* available_thread_idx_;
  reader::BlockingQueue<std::vector<framework::LoDTensor>>* buffer_;
F
fengjiayi 已提交
54 55
};

F
fengjiayi 已提交
56
void MultiFileReader::ReadNext(std::vector<framework::LoDTensor>* out) {
F
fengjiayi 已提交
57 58 59
  out->clear();
  if (HasNext()) {
    buffer_->Receive(out);
F
fengjiayi 已提交
60 61 62
  }
}

F
fengjiayi 已提交
63
void MultiFileReader::ReInit() {
F
fengjiayi 已提交
64
  EndScheduler();
F
fengjiayi 已提交
65 66 67
  StartNewScheduler();
}

F
fengjiayi 已提交
68 69 70 71 72 73
bool MultiFileReader::HasNext() {
  while (!buffer_->IsClosed() && !buffer_->CanReceive()) {
  }
  return buffer_->CanReceive();
}

F
fengjiayi 已提交
74
void MultiFileReader::StartNewScheduler() {
F
fengjiayi 已提交
75
  size_t thread_num = prefetchers_.size();
76 77 78 79
  waiting_file_idx_ = new reader::BlockingQueue<size_t>(file_names_.size());
  available_thread_idx_ = new reader::BlockingQueue<size_t>(thread_num);
  buffer_ = new reader::BlockingQueue<std::vector<framework::LoDTensor>>(
      buffer_size_);
F
fengjiayi 已提交
80 81

  for (size_t i = 0; i < file_names_.size(); ++i) {
82
    waiting_file_idx_->Send(i);
F
fengjiayi 已提交
83 84
  }
  waiting_file_idx_->Close();
F
fengjiayi 已提交
85
  for (size_t i = 0; i < thread_num; ++i) {
86
    available_thread_idx_->Send(i);
F
fengjiayi 已提交
87 88
  }

F
fengjiayi 已提交
89 90 91
  scheduler_ = std::thread([this] { ScheduleThreadFunc(); });
}

F
fengjiayi 已提交
92
void MultiFileReader::EndScheduler() {
F
fengjiayi 已提交
93 94 95
  available_thread_idx_->Close();
  buffer_->Close();
  waiting_file_idx_->Close();
F
fengjiayi 已提交
96 97 98
  if (scheduler_.joinable()) {
    scheduler_.join();
  }
F
fengjiayi 已提交
99 100 101
  delete buffer_;
  delete available_thread_idx_;
  delete waiting_file_idx_;
F
fengjiayi 已提交
102 103
}

F
fengjiayi 已提交
104 105
void MultiFileReader::ScheduleThreadFunc() {
  VLOG(5) << "MultiFileReader schedule thread starts.";
F
fengjiayi 已提交
106
  size_t completed_thread_num = 0;
F
fengjiayi 已提交
107 108 109 110 111 112
  size_t thread_idx;
  while (available_thread_idx_->Receive(&thread_idx)) {
    std::thread& prefetcher = prefetchers_[thread_idx];
    if (prefetcher.joinable()) {
      prefetcher.join();
    }
F
fengjiayi 已提交
113 114 115 116
    size_t file_idx;
    if (waiting_file_idx_->Receive(&file_idx)) {
      // Still have files to read. Start a new prefetch thread.
      std::string file_name = file_names_[file_idx];
F
fengjiayi 已提交
117 118 119
      prefetcher = std::thread([this, file_name, thread_idx] {
        PrefetchThreadFunc(file_name, thread_idx);
      });
F
fengjiayi 已提交
120 121 122
    } else {
      // No more file to read.
      ++completed_thread_num;
F
fengjiayi 已提交
123
      if (completed_thread_num == prefetchers_.size()) {
F
fengjiayi 已提交
124
        buffer_->Close();
F
fengjiayi 已提交
125 126 127 128
        break;
      }
    }
  }
F
fengjiayi 已提交
129 130 131 132 133 134 135 136
  // If users invoke ReInit() when scheduler is running, it will close the
  // 'avaiable_thread_idx_' and prefecther threads have no way to tell scheduler
  // to release their resource. So a check is needed before scheduler ends.
  for (auto& p : prefetchers_) {
    if (p.joinable()) {
      p.join();
    }
  }
F
fengjiayi 已提交
137
  VLOG(5) << "MultiFileReader schedule thread terminates.";
F
fengjiayi 已提交
138 139
}

F
fengjiayi 已提交
140 141
void MultiFileReader::PrefetchThreadFunc(std::string file_name,
                                         size_t thread_idx) {
F
fengjiayi 已提交
142 143 144
  VLOG(5) << "The prefetch thread of file '" << file_name << "' starts.";
  std::unique_ptr<framework::ReaderBase> reader =
      CreateReaderByFileName(file_name, dims_);
F
fengjiayi 已提交
145
  while (true) {
F
fengjiayi 已提交
146 147
    std::vector<framework::LoDTensor> ins;
    reader->ReadNext(&ins);
F
fengjiayi 已提交
148 149 150
    if (ins.empty()) {
      break;
    }
151
    try {
152
      buffer_->Send(std::move(ins));
153
    } catch (paddle::platform::EnforceNotMet e) {
F
fengjiayi 已提交
154 155 156 157 158 159
      VLOG(5) << "WARNING: The buffer channel has been closed. The prefetch "
                 "thread of file '"
              << file_name << "' will terminate.";
      break;
    }
  }
160

161
  if (!available_thread_idx_->Send(thread_idx)) {
F
fengjiayi 已提交
162 163 164
    VLOG(5) << "WARNING: The available_thread_idx_ channel has been closed. "
               "Fail to send thread_idx.";
  }
F
fengjiayi 已提交
165 166 167 168 169 170 171 172 173 174 175 176 177 178
  VLOG(5) << "The prefetch thread of file '" << file_name << "' terminates.";
}

class OpenFilesOp : public framework::OperatorBase {
 public:
  using framework::OperatorBase::OperatorBase;

 private:
  void RunImpl(const framework::Scope& scope,
               const platform::Place& dev_place) const override {
    const auto& shape_concat = Attr<std::vector<int>>("shape_concat");
    const auto& ranks = Attr<std::vector<int>>("ranks");
    PADDLE_ENFORCE(!shape_concat.empty() && !ranks.empty());
    PADDLE_ENFORCE_EQ(std::accumulate(ranks.begin(), ranks.end(), 0),
F
fengjiayi 已提交
179
                      static_cast<int>(shape_concat.size()),
F
fengjiayi 已提交
180 181 182 183 184
                      "The accumulate of all ranks should be equal to the "
                      "shape concat's length.");
    const auto& file_names = Attr<std::vector<std::string>>("file_names");
    PADDLE_ENFORCE(!file_names.empty(), "No file to be read!");
    const size_t thread_num = Attr<int>("thread_num");
185
    const size_t buffer_size = Attr<int>("buffer_size");
F
fengjiayi 已提交
186 187 188

    auto* out = scope.FindVar(Output("Out"))
                    ->template GetMutable<framework::ReaderHolder>();
F
fengjiayi 已提交
189 190 191
    out->Reset(new MultiFileReader(file_names,
                                   RestoreShapes(shape_concat, ranks),
                                   thread_num, buffer_size));
F
fengjiayi 已提交
192 193 194
  }
};

195
class OpenFilesOpMaker : public FileReaderMakerBase {
F
fengjiayi 已提交
196 197
 public:
  OpenFilesOpMaker(OpProto* op_proto, OpAttrChecker* op_checker)
198 199 200 201
      : FileReaderMakerBase(op_proto, op_checker) {
    AddAttr<std::vector<std::string>>("file_names", "Files to be read.");
    AddAttr<int>("thread_num", "The maximal concurrent prefetch thread number.")
        .GreaterThan(0);
202
    AddAttr<int>("buffer_size", "The size of prefetch buffer.").GreaterThan(0);
203

F
fengjiayi 已提交
204 205 206
    AddComment(R"DOC(
      OpenFiles Operator

F
fengjiayi 已提交
207
      An OpenFilesOp creates a MultiFileReader, which is able to 
F
fengjiayi 已提交
208 209 210 211 212 213 214 215 216 217 218 219
      read data multi-threaded from multiple files.
    )DOC");
  }
};

}  // namespace reader
}  // namespace operators
}  // namespace paddle

namespace reader = paddle::operators::reader;

REGISTER_FILE_READER_OPERATOR(open_files, reader::OpenFilesOp,
220
                              reader::OpenFilesOpMaker);