open_files_op.cc 7.0 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 40
 private:
  void StartNewScheduler();
F
fengjiayi 已提交
41
  void EndScheduler();
F
fengjiayi 已提交
42
  void ScheduleThreadFunc();
F
fengjiayi 已提交
43
  void PrefetchThreadFunc(std::string file_name, size_t thread_idx);
F
fengjiayi 已提交
44 45 46

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

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

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

F
fengjiayi 已提交
66
void MultiFileReader::StartNewScheduler() {
F
fengjiayi 已提交
67
  size_t thread_num = prefetchers_.size();
68 69 70 71
  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 已提交
72 73

  for (size_t i = 0; i < file_names_.size(); ++i) {
74
    waiting_file_idx_->Send(i);
F
fengjiayi 已提交
75 76
  }
  waiting_file_idx_->Close();
F
fengjiayi 已提交
77
  for (size_t i = 0; i < thread_num; ++i) {
78
    available_thread_idx_->Send(i);
F
fengjiayi 已提交
79 80
  }

F
fengjiayi 已提交
81 82 83
  scheduler_ = std::thread([this] { ScheduleThreadFunc(); });
}

F
fengjiayi 已提交
84
void MultiFileReader::EndScheduler() {
F
fengjiayi 已提交
85 86 87
  available_thread_idx_->Close();
  buffer_->Close();
  waiting_file_idx_->Close();
F
fengjiayi 已提交
88 89 90
  if (scheduler_.joinable()) {
    scheduler_.join();
  }
F
fengjiayi 已提交
91 92 93
  delete buffer_;
  delete available_thread_idx_;
  delete waiting_file_idx_;
F
fengjiayi 已提交
94 95
}

F
fengjiayi 已提交
96 97
void MultiFileReader::ScheduleThreadFunc() {
  VLOG(5) << "MultiFileReader schedule thread starts.";
F
fengjiayi 已提交
98
  size_t completed_thread_num = 0;
F
fengjiayi 已提交
99 100 101 102 103 104
  size_t thread_idx;
  while (available_thread_idx_->Receive(&thread_idx)) {
    std::thread& prefetcher = prefetchers_[thread_idx];
    if (prefetcher.joinable()) {
      prefetcher.join();
    }
F
fengjiayi 已提交
105 106 107 108
    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 已提交
109 110 111
      prefetcher = std::thread([this, file_name, thread_idx] {
        PrefetchThreadFunc(file_name, thread_idx);
      });
F
fengjiayi 已提交
112 113 114
    } else {
      // No more file to read.
      ++completed_thread_num;
F
fengjiayi 已提交
115
      if (completed_thread_num == prefetchers_.size()) {
F
fengjiayi 已提交
116
        buffer_->Close();
F
fengjiayi 已提交
117 118 119 120
        break;
      }
    }
  }
F
fengjiayi 已提交
121 122 123 124 125 126 127 128
  // 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 已提交
129
  VLOG(5) << "MultiFileReader schedule thread terminates.";
F
fengjiayi 已提交
130 131
}

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

153
  if (!available_thread_idx_->Send(thread_idx)) {
F
fengjiayi 已提交
154 155 156
    VLOG(5) << "WARNING: The available_thread_idx_ channel has been closed. "
               "Fail to send thread_idx.";
  }
F
fengjiayi 已提交
157 158 159 160 161 162 163 164 165 166 167 168 169 170
  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 已提交
171
                      static_cast<int>(shape_concat.size()),
F
fengjiayi 已提交
172 173 174 175 176
                      "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");
177
    const size_t buffer_size = Attr<int>("buffer_size");
F
fengjiayi 已提交
178 179 180

    auto* out = scope.FindVar(Output("Out"))
                    ->template GetMutable<framework::ReaderHolder>();
F
fengjiayi 已提交
181 182 183
    out->Reset(new MultiFileReader(file_names,
                                   RestoreShapes(shape_concat, ranks),
                                   thread_num, buffer_size));
F
fengjiayi 已提交
184 185 186
  }
};

187
class OpenFilesOpMaker : public FileReaderMakerBase {
F
fengjiayi 已提交
188 189
 public:
  OpenFilesOpMaker(OpProto* op_proto, OpAttrChecker* op_checker)
190 191 192 193
      : 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);
194
    AddAttr<int>("buffer_size", "The size of prefetch buffer.").GreaterThan(0);
195

F
fengjiayi 已提交
196 197 198
    AddComment(R"DOC(
      OpenFiles Operator

F
fengjiayi 已提交
199
      An OpenFilesOp creates a MultiFileReader, which is able to 
F
fengjiayi 已提交
200 201 202 203 204 205 206 207 208 209 210 211
      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,
212
                              reader::OpenFilesOpMaker);