shape_inference.h 3.6 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>
Y
Yi Wang 已提交
19 20 21
#include "paddle/fluid/framework/attribute.h"
#include "paddle/fluid/framework/ddim.h"
#include "paddle/fluid/framework/framework.pb.h"
Y
Yi Wang 已提交
22 23
#include "paddle/fluid/framework/var_desc.h"
#include "paddle/fluid/framework/variable.h"
Q
Qiao Longfei 已提交
24 25 26 27

namespace paddle {
namespace framework {

S
sneaxiy 已提交
28 29
class OperatorBase;

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

32
class InferShapeContext {
Q
Qiao Longfei 已提交
33
 public:
34
  virtual ~InferShapeContext() = default;
Q
Qiao Longfei 已提交
35 36
  virtual bool HasInput(const std::string &name) const = 0;
  virtual bool HasOutput(const std::string &name) const = 0;
37

38
  std::vector<proto::VarType::Type> GetInputsVarType(
39
      const std::string &name) const;
40
  std::vector<proto::VarType::Type> GetOutputsVarType(
41 42
      const std::string &name) const;

43 44 45
  virtual bool HasInputs(const std::string &name) const = 0;
  virtual bool HasOutputs(const std::string &name) const = 0;

F
fengjiayi 已提交
46 47
  DDim GetInputDim(const std::string &name) const;
  std::vector<DDim> GetInputsDim(const std::string &name) const;
F
fengjiayi 已提交
48
  std::vector<DDim> GetReaderDims(const std::string &name) const;
F
fengjiayi 已提交
49
  DDim GetInputsElementDim(const std::string &name, int idx) const;
50

F
fengjiayi 已提交
51
  void SetOutputDim(const std::string &name, const DDim &dim);
F
fengjiayi 已提交
52
  void SetOutputsDim(const std::string &name, const std::vector<DDim> &dims);
F
fengjiayi 已提交
53
  void SetReaderDims(const std::string &name, const std::vector<DDim> &dims);
54

Q
Qiao Longfei 已提交
55 56 57 58 59
  virtual AttrReader Attrs() const = 0;
  virtual const std::vector<std::string> &Inputs(
      const std::string &name) const = 0;
  virtual const std::vector<std::string> &Outputs(
      const std::string &name) const = 0;
60

61 62 63
  virtual void ShareDim(const std::string &in, const std::string &out,
                        size_t i = 0, size_t j = 0) = 0;

Q
Qiao Longfei 已提交
64 65
  virtual void ShareLoD(const std::string &in, const std::string &out,
                        size_t i = 0, size_t j = 0) const = 0;
Q
Qiao Longfei 已提交
66

C
chengduo 已提交
67 68 69
  virtual void DecreaseLoDLevel(const std::string &in, const std::string &out,
                                size_t i = 0, size_t j = 0) const = 0;

70 71
  virtual bool IsRuntime() const = 0;

F
fengjiayi 已提交
72 73
  std::vector<InferShapeVarPtr> GetInputVarPtrs(const std::string &name);
  std::vector<InferShapeVarPtr> GetOutputVarPtrs(const std::string &name);
74
  virtual InferShapeVarPtr GetVarPtr(const std::string &name) = 0;
F
fengjiayi 已提交
75

Y
Yang Yang(Tony) 已提交
76 77
  // Note: In while op, we need this to be public
  void SetDims(const std::vector<std::string> &names,
F
fengjiayi 已提交
78
               const std::vector<DDim> &dims);
Y
Yang Yang(Tony) 已提交
79

Q
Qiao Longfei 已提交
80
 protected:
F
fengjiayi 已提交
81 82
  virtual DDim GetDim(const std::string &name) const = 0;
  virtual void SetDim(const std::string &name, const DDim &dim) = 0;
F
fengjiayi 已提交
83 84 85
  virtual std::vector<DDim> GetRepeatedDims(const std::string &name) const = 0;
  virtual void SetRepeatedDims(const std::string &name,
                               const std::vector<DDim> &dims) = 0;
86

F
fengjiayi 已提交
87
  std::vector<DDim> GetDims(const std::vector<std::string> &names) const;
F
fengjiayi 已提交
88

89
  std::vector<proto::VarType::Type> GetVarTypes(
90 91
      const std::vector<std::string> &names) const;

92
  virtual proto::VarType::Type GetVarType(const std::string &name) const = 0;
Q
Qiao Longfei 已提交
93 94 95 96
};

}  // namespace framework
}  // namespace paddle