reader_op_registry.h 4.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//   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.

#pragma once

17 18
#include <string>
#include <vector>
19 20 21 22 23 24 25
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/framework/reader.h"

namespace paddle {
namespace operators {
namespace reader {

F
fengjiayi 已提交
26
static constexpr char kFileFormatSeparator[] = ".";
F
fengjiayi 已提交
27

28 29 30 31 32 33 34 35
using FileReaderCreator = std::function<framework::ReaderBase*(
    const std::string&, const std::vector<framework::DDim>&)>;

std::unordered_map<std::string, FileReaderCreator>& FileReaderRegistry();

template <typename Reader>
int RegisterFileReader(const std::string& filetype) {
  FileReaderRegistry()[filetype] = [](
F
fengjiayi 已提交
36 37
      const std::string& fn, const std::vector<framework::DDim>& dims) {
    return new Reader(fn, dims);
38 39 40 41
  };
  return 0;
}

F
fengjiayi 已提交
42
std::unique_ptr<framework::ReaderBase> CreateReaderByFileName(
43
    const std::string& file_name, const std::vector<framework::DDim>& dims);
F
fengjiayi 已提交
44

45 46 47 48 49
extern std::vector<framework::DDim> RestoreShapes(
    const std::vector<int>& shape_concat, const std::vector<int>& ranks);

class FileReaderMakerBase : public framework::OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
50 51 52 53
  void Make() final;

 protected:
  virtual void Apply() = 0;
54 55 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
};

class FileReaderInferShape : public framework::InferShapeBase {
 public:
  void operator()(framework::InferShapeContext* ctx) const override;
};

class FileReaderInferVarType : public framework::VarTypeInference {
 public:
  void operator()(const framework::OpDesc& op_desc,
                  framework::BlockDesc* block) const override;
};

// general infershape for decorated reader
class DecoratedReaderInferShape : public framework::InferShapeBase {
 public:
  void operator()(framework::InferShapeContext* ctx) const override;
};

// general var type inference for decorated reader
class DecoratedReaderInferVarType : public framework::VarTypeInference {
 public:
  void operator()(const framework::OpDesc& op_desc,
                  framework::BlockDesc* block) const override;
};

class DecoratedReaderMakerBase : public framework::OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
82 83 84 85
  void Make() final;

 protected:
  virtual void Apply() = 0;
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
};

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

#define REGISTER_FILE_READER_OPERATOR(op_name, ...)                  \
  REGISTER_OPERATOR(op_name, __VA_ARGS__,                            \
                    paddle::operators::reader::FileReaderInferShape, \
                    paddle::framework::EmptyGradOpMaker,             \
                    paddle::operators::reader::FileReaderInferVarType)

#define REGISTER_DECORATED_READER_OPERATOR(op_name, ...)                  \
  REGISTER_OPERATOR(op_name, __VA_ARGS__,                                 \
                    paddle::operators::reader::DecoratedReaderInferShape, \
                    paddle::framework::EmptyGradOpMaker,                  \
                    paddle::operators::reader::DecoratedReaderInferVarType)
103 104 105 106 107 108 109 110 111 112 113 114

#define REGISTER_FILE_READER(_filetype, _reader)            \
  STATIC_ASSERT_GLOBAL_NAMESPACE(                           \
      _reg_file_reader_##_filetype,                         \
      "Must use REGISTER_FILE_READER in global namespace"); \
  int TouchFileReader##_filetype() { return 0; }            \
  int _reg_file_reader_entry_##filetype =                   \
      paddle::operators::reader::RegisterFileReader<_reader>(#_filetype)

#define USE_FILE_READER(filetype)         \
  extern int TouchFileReader##filetype(); \
  static int _use_##filetype = TouchFileReader##filetype()