op_desc.h 2.7 KB
Newer Older
F
fengjiayi 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* 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

#include <unordered_map>
#include <vector>
#include "paddle/framework/attribute.h"
20
#include "paddle/framework/type_defs.h"
F
fengjiayi 已提交
21 22 23 24 25 26 27 28 29
#include "paddle/framework/var_desc.h"

namespace paddle {
namespace framework {

class BlockDescBind;

class OpDescBind {
 public:
F
fengjiayi 已提交
30 31 32 33 34
  OpDescBind() {}

  OpDescBind(const std::string &type, const VariableNameMap &inputs,
             const VariableNameMap &outputs, const AttributeMap &attrs);

F
fengjiayi 已提交
35 36 37 38 39 40 41 42 43 44
  OpDesc *Proto();

  std::string Type() const { return op_desc_.type(); }

  void SetType(const std::string &type) { op_desc_.set_type(type); }

  const std::vector<std::string> &Input(const std::string &name) const;

  std::vector<std::string> InputNames() const;

F
Update  
fengjiayi 已提交
45 46
  std::vector<std::string> InputArgumentNames() const;

F
fengjiayi 已提交
47 48 49 50 51 52 53
  void SetInput(const std::string &param_name,
                const std::vector<std::string> &args);

  const std::vector<std::string> &Output(const std::string &name) const;

  std::vector<std::string> OutputNames() const;

F
Update  
fengjiayi 已提交
54 55
  std::vector<std::string> OutputArgumentNames() const;

F
fengjiayi 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
  void SetOutput(const std::string &param_name,
                 const std::vector<std::string> &args);

  std::string DebugString() { return this->Proto()->DebugString(); }

  bool HasAttr(const std::string &name) const {
    return attrs_.find(name) != attrs_.end();
  }

  AttrType GetAttrType(const std::string &name) const;

  std::vector<std::string> AttrNames() const;

  void SetAttr(const std::string &name, const Attribute &v);

  void SetBlockAttr(const std::string &name, BlockDescBind &block);

F
fengjiayi 已提交
73
  // Only be used in C++
Y
Yu Yang 已提交
74
  void SetAttrMap(const AttributeMap &attr_map);
F
fengjiayi 已提交
75

F
fengjiayi 已提交
76 77 78 79
  Attribute GetAttr(const std::string &name) const;

  int GetBlockAttr(const std::string &name) const;

F
fengjiayi 已提交
80 81
  void Rename(const std::string &old_name, const std::string &new_name);

F
fengjiayi 已提交
82
  // Only be used in C++
Y
Yu Yang 已提交
83
  const AttributeMap &GetAttrMap() const;
F
fengjiayi 已提交
84

F
fengjiayi 已提交
85 86 87 88
 private:
  void Sync();

  OpDesc op_desc_;
Y
Yu Yang 已提交
89 90 91
  VariableNameMap inputs_;
  VariableNameMap outputs_;
  AttributeMap attrs_;
F
fengjiayi 已提交
92 93 94 95 96

  // need_update_ indicate there some local changes not be synchronized. If
  // local changes should be synchronized, need_update_ should be set to true.
  bool need_update_{false};
};
F
fengjiayi 已提交
97 98
}  // namespace framework
}  // namespace paddle