create_py_reader_op.cc 3.7 KB
Newer Older
S
sneaxiy 已提交
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.

15 16
#include "paddle/fluid/framework/ddim.h"
#include "paddle/fluid/framework/framework.pb.h"
S
sneaxiy 已提交
17
#include "paddle/fluid/operators/reader/py_reader.h"
S
sneaxiy 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30
#include "paddle/fluid/operators/reader/reader_op_registry.h"

namespace paddle {
namespace operators {
namespace reader {

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 已提交
31 32 33 34
    auto* out = scope.FindVar(Output("Out"))
                    ->template GetMutable<framework::ReaderHolder>();
    if (out->Get() != nullptr) return;

S
sneaxiy 已提交
35 36
    const std::string& queue_name = Input("blocking_queue");
    auto* queue_holder_var = scope.FindVar(queue_name);
37 38
    PADDLE_ENFORCE_NOT_NULL(
        queue_holder_var,
S
sneaxiy 已提交
39 40 41 42
        "No LoDTensorBlockingQueueHolder variable with name %s found",
        queue_name);
    auto* queue_holder =
        queue_holder_var->template GetMutable<LoDTensorBlockingQueueHolder>();
S
sneaxiy 已提交
43

44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
    /* Coverting shape_concat and ranks into DDim of each data.
     shape_concat and ranks are shapes and shape ranks of each data.E.g.
     shape_concat = [2,3,4,5,6], ranks = [3,2] means two data whose shapes are
     [2,3,4] and [5,6] respectively. */
    auto& shape_concat = Attr<std::vector<int>>("shape_concat");
    auto& ranks = Attr<std::vector<int>>("ranks");
    int shape_start_index = 0;
    std::vector<framework::DDim> dims;
    for (size_t i = 0; i < ranks.size(); ++i) {
      int shape_end_index = shape_start_index + ranks[i];
      auto shape = std::vector<int>(shape_concat.begin() + shape_start_index,
                                    shape_concat.begin() + shape_end_index);
      dims.push_back(framework::make_ddim(shape));
      shape_start_index = shape_end_index;
    }

    // Converts VarType from int to enum
    auto& dtype_int = Attr<std::vector<int>>("dtypes");
    std::vector<framework::proto::VarType::Type> var_types;
    for (size_t i = 0; i < dtype_int.size(); ++i) {
      var_types.push_back(
          static_cast<framework::proto::VarType::Type>(dtype_int[i]));
    }

    // Converts need_check_feed from int to bool
    auto& need_check_feed_int = Attr<std::vector<int>>("need_check_feed");
    std::vector<bool> need_check_feed;
    for (size_t i = 0; i < need_check_feed_int.size(); ++i) {
      need_check_feed.push_back(static_cast<bool>(need_check_feed_int[i]));
    }
    out->Reset(std::make_shared<PyReader>(queue_holder->GetQueue(), dims,
                                          var_types, need_check_feed));
S
sneaxiy 已提交
76 77 78 79 80 81 82 83 84 85
  }
};

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

    AddComment(R"DOC(
W
wopeizl 已提交
86
      Create PyReader to support LoDTensor data feeding in Python side.
S
sneaxiy 已提交
87 88 89 90 91 92 93 94 95 96 97 98
      )DOC");
  }
};

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

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

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