create_py_reader_op.cc 2.8 KB
Newer Older
S
sneaxiy 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// 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/reader/lod_tensor_blocking_queue.h"
#include "paddle/fluid/operators/reader/reader_op_registry.h"

namespace paddle {
namespace operators {
namespace reader {

22
class PyReader : public framework::FileReader {
S
sneaxiy 已提交
23
 public:
24 25
  explicit PyReader(const std::shared_ptr<LoDTensorBlockingQueue>& queue)
      : framework::FileReader() {
S
sneaxiy 已提交
26 27 28 29 30 31
    PADDLE_ENFORCE(queue != nullptr, "LoDTensorBlockingQueue must not be null");
    queue_ = queue;
  }

  void ReadNext(std::vector<framework::LoDTensor>* out) override {
    bool success;
S
sneaxiy 已提交
32
    *out = queue_->Pop(&success);
S
sneaxiy 已提交
33 34 35
    if (!success) out->clear();
  }

Y
yuyang18 已提交
36 37
  ~PyReader() { queue_->Close(); }

38 39 40
  void Shutdown() override { queue_->Close(); }

  void Start() override { queue_->ReOpen(); }
S
sneaxiy 已提交
41 42 43 44 45 46 47 48 49 50 51 52

 private:
  std::shared_ptr<LoDTensorBlockingQueue> queue_;
};

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

 private:
  void RunImpl(const framework::Scope& scope,
               const platform::Place& dev_place) const override {
S
sneaxiy 已提交
53 54 55 56
    auto* out = scope.FindVar(Output("Out"))
                    ->template GetMutable<framework::ReaderHolder>();
    if (out->Get() != nullptr) return;

S
sneaxiy 已提交
57 58
    const std::string& queue_name = Input("blocking_queue");
    auto* queue_holder_var = scope.FindVar(queue_name);
59 60
    PADDLE_ENFORCE_NOT_NULL(
        queue_holder_var,
S
sneaxiy 已提交
61 62 63 64
        "No LoDTensorBlockingQueueHolder variable with name %s found",
        queue_name);
    auto* queue_holder =
        queue_holder_var->template GetMutable<LoDTensorBlockingQueueHolder>();
S
sneaxiy 已提交
65

66
    out->Reset(std::make_shared<PyReader>(queue_holder->GetQueue()));
S
sneaxiy 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
  }
};

class CreatePyReaderOpMaker : public FileReaderMakerBase {
 protected:
  void Apply() override {
    AddInput("blocking_queue",
             "Name of the `LoDTensorBlockingQueueHolder` variable");

    AddComment(R"DOC(
			Create PyReader to support LoDTensor data feeding in Python side.
      )DOC");
  }
};

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

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

REGISTER_FILE_READER_OPERATOR(create_py_reader, reader::CreatePyReaderOp,
                              reader::CreatePyReaderOpMaker);