create_py_reader_op.cc 4.9 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
        "No LoDTensorBlockingQueueHolder variable with name %s found",
        queue_name);
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
    std::shared_ptr<LoDTensorBlockingQueue> queue;
    std::shared_ptr<OrderedMultiDeviceLoDTensorBlockingQueue> ordered_queue;
    if (queue_holder_var->IsType<LoDTensorBlockingQueueHolder>()) {
      queue = queue_holder_var->Get<LoDTensorBlockingQueueHolder>().GetQueue();
    } else if (queue_holder_var
                   ->IsType<OrderedMultiDeviceLoDTensorBlockingQueueHolder>()) {
      auto* queue_holder =
          queue_holder_var
              ->GetMutable<OrderedMultiDeviceLoDTensorBlockingQueueHolder>();
      auto dev_cnt = Attr<int>("device_count");
      auto dev_idx = static_cast<size_t>(Attr<int>("device_index"));
      ordered_queue = queue_holder->GetQueue();
      ordered_queue->InitOnce(dev_cnt);
      queue = ordered_queue->GetQueue(dev_idx);
    }
S
sneaxiy 已提交
56

57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    /* 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]));
    }
87 88 89 90 91 92 93 94 95 96 97 98 99 100
    auto py_reader =
        std::make_shared<PyReader>(queue, dims, var_types, need_check_feed);
    if (ordered_queue) {
      ordered_queue->AddResetMethod([py_reader] {
        auto end_readers = py_reader->GetEndPoints();
        for (auto* reader : end_readers) {
          reader->Shutdown();
        }
        for (auto* reader : end_readers) {
          reader->Start();
        }
      });
    }
    out->Reset(py_reader);
S
sneaxiy 已提交
101 102 103 104 105 106 107 108 109
  }
};

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

110 111 112 113 114 115
    AddAttr<int>("device_index", "The device index this reader offers data")
        .SetDefault(0);
    AddAttr<int>("device_count",
                 "The total number of devices the reader offers data")
        .SetDefault(1);

S
sneaxiy 已提交
116
    AddComment(R"DOC(
W
wopeizl 已提交
117
      Create PyReader to support LoDTensor data feeding in Python side.
S
sneaxiy 已提交
118 119 120 121 122 123 124 125 126 127 128 129
      )DOC");
  }
};

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

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

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