create_threaded_reader_op.cc 2.6 KB
Newer Older
F
fengjiayi 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
//   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.

#include "paddle/fluid/operators/detail/safe_ref.h"
#include "paddle/fluid/operators/reader/reader_op_registry.h"

namespace paddle {
namespace operators {
namespace reader {

class ThreadedReader : public framework::DecoratedReader {
 public:
F
fengjiayi 已提交
24 25
  explicit ThreadedReader(const std::shared_ptr<ReaderBase>& reader)
      : DecoratedReader(reader) {}
F
fengjiayi 已提交
26 27 28

  void ReadNext(std::vector<framework::LoDTensor>* out) override {
    std::lock_guard<std::mutex> lock(mutex_);
F
fengjiayi 已提交
29
    reader_->ReadNext(out);
F
fengjiayi 已提交
30 31
  }

32
  void ReInit() override { reader_->ReInit(); }
F
fengjiayi 已提交
33 34

 private:
F
fengjiayi 已提交
35
  std::mutex mutex_;
F
fengjiayi 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
};

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

 private:
  void RunImpl(const framework::Scope& scope,
               const platform::Place& dev_place) const override {
    auto* out = detail::Ref(scope.FindVar(Output("Out")))
                    .GetMutable<framework::ReaderHolder>();
    if (out->Get() != nullptr) {
      return;
    }
    const auto& underlying_reader = scope.FindVar(Input("UnderlyingReader"))
                                        ->Get<framework::ReaderHolder>();
52 53
    out->Reset(
        framework::MakeDecoratedReader<ThreadedReader>(underlying_reader));
F
fengjiayi 已提交
54 55 56 57
  }
};

class CreateThreadedReaderOpMaker : public DecoratedReaderMakerBase {
Y
Yu Yang 已提交
58 59
 protected:
  void Apply() override {
F
fengjiayi 已提交
60 61 62
    AddComment(R"DOC(
      CreateThreadedReader Operator

Y
Yu Yang 已提交
63 64 65 66 67
      This operator creates a threaded reader. A threaded reader's
      'ReadNext()' can be invoked by several threads at the same
      time.
      When the attribute 'safe_mode' is true, the threaded reader's
      'ReInit()' is disabled to avoid unexpected bugs in multi-thread
F
fengjiayi 已提交
68
      environment.
J
JiayiFeng 已提交
69
    )DOC");
F
fengjiayi 已提交
70 71 72 73 74 75
  }
};

}  // namespace reader
}  // namespace operators
}  // namespace paddle
F
fengjiayi 已提交
76 77

namespace reader = paddle::operators::reader;
J
JiayiFeng 已提交
78 79 80
REGISTER_DECORATED_READER_OPERATOR(create_threaded_reader,
                                   reader::CreateThreadedReaderOp,
                                   reader::CreateThreadedReaderOpMaker);