shape_inference.h 2.1 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 19 20 21 22
#include "paddle/framework/ddim.h"

namespace paddle {
namespace framework {

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

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

Q
Qiao Longfei 已提交
32
  virtual framework::DDim GetInputDim(const std::string &name) const = 0;
33 34 35

  std::vector<framework::DDim> GetInputsDim(const std::string &name) const;

Q
Qiao Longfei 已提交
36 37
  virtual void SetOutputDim(const std::string &name, const DDim &dim) = 0;
  void SetOutputsDim(const std::string &name,
38 39
                     const std::vector<framework::DDim> &dims);

Q
Qiao Longfei 已提交
40 41 42 43 44
  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;
45

Q
Qiao Longfei 已提交
46 47
  virtual void ShareLoD(const std::string &in, const std::string &out,
                        size_t i = 0, size_t j = 0) const = 0;
Q
Qiao Longfei 已提交
48 49 50 51

 protected:
  virtual framework::DDim GetDim(const std::string &name) const = 0;
  virtual void SetDim(const std::string &name, const framework::DDim &dim) = 0;
52

Q
Qiao Longfei 已提交
53
  std::vector<framework::DDim> GetDims(
54 55
      const std::vector<std::string> &names) const;

Q
Qiao Longfei 已提交
56
  void SetDims(const std::vector<std::string> &names,
57
               const std::vector<framework::DDim> &dims);
Q
Qiao Longfei 已提交
58 59 60 61
};

}  // namespace framework
}  // namespace paddle