-
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
[TVMC] Add configuration tir.add_lower_pass
to option --pass-config
#9817
Conversation
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.
Just one remark, and I think we're good to go with this PR.
f7b3c53
to
ee7df62
Compare
@leandron Would you mind helping me review again? :) |
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
Thanks @leeexyz, this is merged now. |
Hi All,
Sometimes, we should manipulate the Passes order or add new Passes not only for
Relay Pass
but forTIR Pass
. the This PR add the configurationtir.add_lower_pass
to--pass-config
. It supports two types ofTIR Pass
, one is the built-in pass in TVM and another one is the external customized pass that is loaded byimportlib
.Some use cases.