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

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
#include "paddle/framework/attribute.h"
Q
Qiao Longfei 已提交
18
#include "paddle/framework/ddim.h"
19
#include "paddle/framework/framework.pb.h"
Q
Qiao Longfei 已提交
20 21 22 23

namespace paddle {
namespace framework {

24
class InferShapeContext {
Q
Qiao Longfei 已提交
25
 public:
26
  virtual ~InferShapeContext() = default;
Q
Qiao Longfei 已提交
27 28
  virtual bool HasInput(const std::string &name) const = 0;
  virtual bool HasOutput(const std::string &name) const = 0;
29

30 31 32
  std::vector<proto::VarDesc::VarType> GetInputsVarType(
      const std::string &name) const;
  std::vector<proto::VarDesc::VarType> GetOutputsVarType(
33 34
      const std::string &name) const;

35 36 37
  virtual bool HasInputs(const std::string &name) const = 0;
  virtual bool HasOutputs(const std::string &name) const = 0;

F
fengjiayi 已提交
38 39
  DDim GetInputDim(const std::string &name) const;
  std::vector<DDim> GetInputsDim(const std::string &name) const;
F
fengjiayi 已提交
40
  std::vector<DDim> GetReaderDims(const std::string &name) const;
F
fengjiayi 已提交
41
  DDim GetInputsElementDim(const std::string &name, int idx) const;
42

F
fengjiayi 已提交
43
  void SetOutputDim(const std::string &name, const DDim &dim);
F
fengjiayi 已提交
44
  void SetOutputsDim(const std::string &name, const std::vector<DDim> &dims);
F
fengjiayi 已提交
45
  void SetReaderDims(const std::string &name, const std::vector<DDim> &dims);
46

Q
Qiao Longfei 已提交
47 48 49 50 51
  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;
52

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

56 57
  virtual bool IsRuntime() const = 0;

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

Q
Qiao Longfei 已提交
62
 protected:
F
fengjiayi 已提交
63 64
  virtual DDim GetDim(const std::string &name) const = 0;
  virtual void SetDim(const std::string &name, const DDim &dim) = 0;
F
fengjiayi 已提交
65 66 67
  virtual std::vector<DDim> GetRepeatedDims(const std::string &name) const = 0;
  virtual void SetRepeatedDims(const std::string &name,
                               const std::vector<DDim> &dims) = 0;
68

F
fengjiayi 已提交
69
  std::vector<DDim> GetDims(const std::vector<std::string> &names) const;
70
  std::vector<proto::VarDesc::VarType> GetVarTypes(
71 72
      const std::vector<std::string> &names) const;

73
  virtual proto::VarDesc::VarType GetVarType(const std::string &name) const = 0;
Q
Qiao Longfei 已提交
74 75 76 77
};

}  // namespace framework
}  // namespace paddle