create_threaded_reader_op.cc 2.7 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:
24
  explicit ThreadedReader(ReaderBase* reader) : DecoratedReader(reader) {}
F
fengjiayi 已提交
25 26 27

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

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

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

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>();
51
    out->Reset(new ThreadedReader(underlying_reader.Get()));
F
fengjiayi 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64
  }
};

class CreateThreadedReaderOpMaker : public DecoratedReaderMakerBase {
 public:
  CreateThreadedReaderOpMaker(OpProto* op_proto, OpAttrChecker* op_checker)
      : DecoratedReaderMakerBase(op_proto, op_checker) {
    AddComment(R"DOC(
      CreateThreadedReader Operator

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

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

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