-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RUNTIME] Move Map into runtime #7570
Conversation
This allows us to use Map to store parameters needed at runtime.
@@ -25,7 +25,7 @@ | |||
|
|||
#include <tvm/arith/int_set.h> | |||
#include <tvm/ir/expr.h> | |||
#include <tvm/node/container.h> |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
* [RUNTIME] Move Map into runtime This allows us to use Map to store parameters needed at runtime. * node.{Array|Map} -> runtime.{Array|Map} * missed some renames
* [RUNTIME] Move Map into runtime This allows us to use Map to store parameters needed at runtime. * node.{Array|Map} -> runtime.{Array|Map} * missed some renames
This allows us to use Map to store parameters needed at runtime. Needed for #7559.
@junrushao1994