guochaorong-patch-1
Xin Pan 7 years ago
parent fcda23a3e4
commit 7781297c70

@ -18,6 +18,7 @@
#include <unordered_set> #include <unordered_set>
#include <utility> #include <utility>
#include "paddle/fluid/framework/ir/node.h"
#include "paddle/fluid/platform/place.h" #include "paddle/fluid/platform/place.h"
namespace paddle { namespace paddle {

@ -14,6 +14,25 @@ limitations under the License. */
#pragma once #pragma once
#include <map>
#include <memory>
#include <string>
#include <vector>
#include "paddle/fluid/framework/ir/node.h"
#include "paddle/fluid/platform/variant.h"
namespace paddle { namespace paddle {
namespace framework {} // namespace framework namespace framework {
class Graph {
public:
std::map<std::string, std::vector<boost::any>> attrs;
std::vector<Node *> inputs;
std::vector<Node *> outputs;
std::vector<std::unique_ptr<Node>> nodes;
};
} // namespace framework
} // namespace paddle } // namespace paddle

@ -15,9 +15,11 @@ limitations under the License. */
#pragma once #pragma once
#include <cstdint> #include <cstdint>
#include <map>
#include <string> #include <string>
#include <vector> #include <vector>
#include "paddle/fluid/platform/macros.h" #include "paddle/fluid/platform/macros.h"
#include "paddle/fluid/platform/variant.h"
namespace paddle { namespace paddle {
namespace framework { namespace framework {
@ -29,11 +31,6 @@ class Node {
Node() {} Node() {}
virtual ~Node() {} virtual ~Node() {}
template <typename Subclass>
Subclass &As() {
return *dynamic_cast<Subclass *>(this);
}
int64_t ID() const { return id_; } int64_t ID() const { return id_; }
std::string Name() const { return name_; } std::string Name() const { return name_; }
@ -42,12 +39,15 @@ class Node {
return Name() + "(" + std::to_string(ID()) + ")"; return Name() + "(" + std::to_string(ID()) + ")";
} }
virtual std::string DebugString() const = 0;
Type NodeType() const { return type_; } Type NodeType() const { return type_; }
std::vector<Node *> inputs; std::vector<Node *> inputs;
std::vector<Node *> outputs; std::vector<Node *> outputs;
protected: protected:
std::map<std::string, std::vector<boost::any>> attrs_;
int64_t id_ = 0; int64_t id_ = 0;
std::string name_; std::string name_;
Type type_; Type type_;

@ -38,6 +38,7 @@ limitations under the License. */
#endif #endif
#endif #endif
#include <boost/any.hpp>
#include <boost/mpl/comparison.hpp> #include <boost/mpl/comparison.hpp>
#include <boost/mpl/less_equal.hpp> #include <boost/mpl/less_equal.hpp>
#include <boost/variant.hpp> #include <boost/variant.hpp>

Loading…
Cancel
Save