Skip to content
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

[Bugfix] Remove mutation of IRModule in ReorderTransformFunc #1760

Merged

Conversation

Lunderberg
Copy link
Contributor

A pass must not mutate the IRModule that it receives as input. Unlike most functions exposed through the python API, the IRModule.__setitem__ method mutates the underlying IRModuleNode. This can impact other users of the shared IRModule object, which expect mutation to be done using copy-on-write.

See apache/tvm#11372 for more details.

A pass must not mutate the `IRModule` that it receives as input.
Unlike most functions exposed through the python API, the
`IRModule.__setitem__` method mutates the underlying `IRModuleNode`.
This can impact other users of the shared `IRModule` object, which
expect mutation to be done using copy-on-write.

See apache/tvm#11372 for more details.
Copy link
Member

@MasterJH5574 MasterJH5574 left a comment

Choose a reason for hiding this comment

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

Thank you @Lunderberg!

@MasterJH5574 MasterJH5574 merged commit d3b07cb into mlc-ai:main Feb 14, 2024
1 check was pending
@Lunderberg Lunderberg deleted the bugfix_remove_irmodule_mutation branch February 14, 2024 18:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants