Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/tvm/arith/bound.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

#include <tvm/arith/int_set.h>
#include <tvm/ir/expr.h>
#include <tvm/node/container.h>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@junrushao1994 can we remove the node subdirectory now? seems to be out-dated naming now that we are in object land?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The node subdir still contains a lot of useful stuff, like structural hash and reflection, etc. Removing node/container.h looks good to me

#include <tvm/runtime/container.h>
#include <tvm/tir/expr.h>
#include <tvm/tir/stmt.h>

Expand Down
2 changes: 1 addition & 1 deletion include/tvm/arith/pattern.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#define TVM_ARITH_PATTERN_H_

#include <tvm/ir/expr.h>
#include <tvm/node/container.h>
#include <tvm/runtime/container.h>
#include <tvm/tir/expr.h>

namespace tvm {
Expand Down
2 changes: 1 addition & 1 deletion include/tvm/ir/adt.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@

#include <tvm/ir/expr.h>
#include <tvm/ir/type.h>
#include <tvm/node/container.h>
#include <tvm/node/node.h>
#include <tvm/runtime/container.h>
#include <tvm/runtime/object.h>

#include <string>
Expand Down
2 changes: 1 addition & 1 deletion include/tvm/ir/expr.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@

#include <tvm/ir/span.h>
#include <tvm/ir/type.h>
#include <tvm/node/container.h>
#include <tvm/node/node.h>
#include <tvm/runtime/container.h>
#include <tvm/runtime/object.h>

#include <algorithm>
Expand Down
2 changes: 1 addition & 1 deletion include/tvm/ir/module.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
#include <tvm/ir/expr.h>
#include <tvm/ir/function.h>
#include <tvm/ir/type.h>
#include <tvm/node/container.h>
#include <tvm/parser/source_map.h>
#include <tvm/runtime/container.h>

#include <string>
#include <unordered_map>
Expand Down
1 change: 0 additions & 1 deletion include/tvm/ir/transform.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@
#include <tvm/ir/diagnostic.h>
#include <tvm/ir/error.h>
#include <tvm/ir/module.h>
#include <tvm/node/container.h>
#include <tvm/runtime/container.h>
#include <tvm/support/with.h>

Expand Down
2 changes: 1 addition & 1 deletion include/tvm/ir/type.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
#define TVM_IR_TYPE_H_

#include <tvm/ir/span.h>
#include <tvm/node/container.h>
#include <tvm/node/node.h>
#include <tvm/runtime/container.h>
#include <tvm/runtime/data_type.h>
#include <tvm/runtime/object.h>

Expand Down
2 changes: 1 addition & 1 deletion include/tvm/node/attr_registry_map.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#ifndef TVM_NODE_ATTR_REGISTRY_MAP_H_
#define TVM_NODE_ATTR_REGISTRY_MAP_H_

#include <tvm/node/container.h>
#include <tvm/runtime/container.h>

#include <utility>
#include <vector>
Expand Down
Loading