-
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
[Hotfix] Revert driver API pass ordering that breaks MLC, mark failing test #16770
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.
Thank you for making the more targeted reversion, and for linking back to the discussions. Those links are always a big help in tracing back changes after the fact.
@@ -482,6 +482,12 @@ def simple_compute( | |||
assert generated_code == expected_cuda_script | |||
|
|||
|
|||
@pytest.mark.skip( |
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.
I like the documentation, both to indicate what needs to be resolved in order to re-enable functionality, and where the existing discussions are
Tianqi clarified that only the driver API pass ordering caused the MLC failures, so that's the only change being reverted here now. |
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.
Thanks so much @slyubomirsky @Lunderberg @tqchen. Just checked on my local side: this PR can fix the model compilation error.
The CI error looks to be spurious. We will have to retrigger it. |
@tvm-bot rerun |
…g test (apache#16770) * Revert changes that cause failures in MLC, mark and skip the failing tests * Restore changes unrelated to driver API reordering
Following up from discussion in #16769, this is a smaller-scale reversion that patches the MLC build by reverting only the changes that broke it (the driver API pass reordering). However, these changes came from #16569 and were needed to fix failing tests. That test has been marked as skippable here but should be fixed along with MLC.