shape_inference.h 4.0 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Q
Qiao Longfei 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

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

Y
Yi Wang 已提交
20
#include "paddle/fluid/framework/attribute.h"
Y
Yi Wang 已提交
21 22
#include "paddle/fluid/framework/var_desc.h"
#include "paddle/fluid/framework/variable.h"
23
#include "paddle/phi/core/ddim.h"
Q
Qiao Longfei 已提交
24

25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
namespace paddle {
namespace framework {
namespace proto {

class BlockDesc;
class OpDesc;
class OpDesc_Attr;
class OpDesc_Var;
class OpProto;
class OpProto_Attr;
class OpProto_Var;
class OpVersion;
class OpVersionMap;
class OpVersionMap_OpVersionPair;
class ProgramDesc;
class VarDesc;
class VarType;
class VarType_LoDTensorArrayDesc;
class VarType_LoDTensorDesc;
class VarType_ReaderDesc;
class VarType_TensorDesc;
class VarType_Tuple;
class Version;
}  // namespace proto
}  // namespace framework
}  // namespace paddle

Q
Qiao Longfei 已提交
52 53 54
namespace paddle {
namespace framework {

S
sneaxiy 已提交
55 56
class OperatorBase;

F
fengjiayi 已提交
57 58
using InferShapeVarPtr = boost::variant<VarDesc *, Variable *>;

59
class InferShapeContext {
Q
Qiao Longfei 已提交
60
 public:
61
  virtual ~InferShapeContext() = default;
Q
Qiao Longfei 已提交
62 63
  virtual bool HasInput(const std::string &name) const = 0;
  virtual bool HasOutput(const std::string &name) const = 0;
64
  virtual bool HasAttr(const std::string &name) const = 0;
65

66
  virtual std::vector<proto::VarType::Type> GetInputsVarType(
X
Xin Pan 已提交
67
      const std::string &name) const = 0;
68
  virtual std::vector<proto::VarType::Type> GetOutputsVarType(
X
Xin Pan 已提交
69
      const std::string &name) const = 0;
70

71 72 73
  virtual bool HasInputs(const std::string &name) const = 0;
  virtual bool HasOutputs(const std::string &name) const = 0;

X
Xin Pan 已提交
74 75
  virtual DDim GetInputDim(const std::string &name) const = 0;
  virtual std::vector<DDim> GetInputsDim(const std::string &name) const = 0;
76
  virtual std::vector<DDim> GetReaderDims(const std::string &name) const;
77

X
Xin Pan 已提交
78
  virtual void SetOutputDim(const std::string &name, const DDim &dim) = 0;
79
  virtual void SetOutputsDim(const std::string &name,
X
Xin Pan 已提交
80
                             const std::vector<DDim> &dims) = 0;
81 82
  virtual void SetReaderDims(const std::string &name,
                             const std::vector<DDim> &dims);
83 84
  virtual std::string GetInputNameByIdx(size_t idx) const = 0;
  virtual std::string GetOutputNameByIdx(size_t idx) const = 0;
Q
Qiao Longfei 已提交
85
  virtual AttrReader Attrs() const = 0;
H
hong 已提交
86 87
  virtual std::vector<std::string> Inputs(const std::string &name) const = 0;
  virtual std::vector<std::string> Outputs(const std::string &name) const = 0;
88

89 90 91
  virtual void ShareDim(const std::string &in, const std::string &out,
                        size_t i = 0, size_t j = 0) = 0;

Q
Qiao Longfei 已提交
92 93
  virtual void ShareLoD(const std::string &in, const std::string &out,
                        size_t i = 0, size_t j = 0) const = 0;
H
hong 已提交
94 95 96 97
  // share the lod information of all the tensor from in to out.
  // out_vars[i].lod = in_vars[i].lod
  virtual void ShareAllLoD(const std::string &in,
                           const std::string &out) const = 0;
Q
Qiao Longfei 已提交
98

99
  virtual int32_t GetLoDLevel(const std::string &in, size_t i = 0) const = 0;
C
chengduo 已提交
100

101 102
  virtual void SetLoDLevel(const std::string &out, int32_t lod_level,
                           size_t j = 0) const = 0;
103

104 105
  virtual bool IsRuntime() const = 0;

106 107
  virtual bool IsRunMKLDNNKernel() const = 0;

108
  virtual std::vector<InferShapeVarPtr> GetInputVarPtrs(
109
      const std::string &name) const = 0;
110
  virtual std::vector<InferShapeVarPtr> GetOutputVarPtrs(
111
      const std::string &name) const = 0;
F
fengjiayi 已提交
112

Q
Qiao Longfei 已提交
113
 protected:
F
fengjiayi 已提交
114 115 116
  virtual std::vector<DDim> GetRepeatedDims(const std::string &name) const = 0;
  virtual void SetRepeatedDims(const std::string &name,
                               const std::vector<DDim> &dims) = 0;
Q
Qiao Longfei 已提交
117 118 119 120
};

}  // namespace framework
}  // namespace paddle