-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[MODULE/RUNTIME] Remove Precompile, simplify module #174
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ZihengJiang
approved these changes
Jun 6, 2017
CloudManX
added a commit
to CloudManX/incubator-tvm
that referenced
this pull request
Sep 21, 2021
vinx13
pushed a commit
to vinx13/tvm
that referenced
this pull request
Mar 9, 2022
Hzfengsy
pushed a commit
to Hzfengsy/tvm
that referenced
this pull request
Jul 30, 2022
This way we can have a uniform API to print IRModule, TensorIR function and Relax functions.
areusch
pushed a commit
to areusch/tvm
that referenced
this pull request
Sep 20, 2022
This way we can have a uniform API to print IRModule, TensorIR function and Relax functions.
junrushao
pushed a commit
to junrushao/tvm
that referenced
this pull request
Oct 18, 2022
This way we can have a uniform API to print IRModule, TensorIR function and Relax functions.
MasterJH5574
pushed a commit
to MasterJH5574/tvm
that referenced
this pull request
Nov 20, 2022
This way we can have a uniform API to print IRModule, TensorIR function and Relax functions.
junrushao
pushed a commit
to junrushao/tvm
that referenced
this pull request
Feb 8, 2023
This way we can have a uniform API to print IRModule, TensorIR function and Relax functions.
yelite
pushed a commit
to yelite/tvm
that referenced
this pull request
Feb 17, 2023
This way we can have a uniform API to print IRModule, TensorIR function and Relax functions.
jinhongyii
pushed a commit
to jinhongyii/tvm
that referenced
this pull request
Apr 10, 2023
…pache#174) This PR enhances canonical simplify to simplify product division pattern where both side involves symbolic variables. Test cases are added. Co-authored-by: Tianqi Chen <[email protected]>
tqchen
added a commit
to tqchen/tvm
that referenced
this pull request
Apr 11, 2023
…pache#174) This PR enhances canonical simplify to simplify product division pattern where both side involves symbolic variables. Test cases are added. Co-authored-by: Tianqi Chen <[email protected]>
LeiWang1999
added a commit
to LeiWang1999/tvm
that referenced
this pull request
Nov 8, 2024
* Refactor BatchMatMulEmitter and BatchMatMulSelector for improved readability and maintainability * Refactor import statements for improved readability and maintainability * Refactor import statements for improved readability and maintainability * disable failure email for ci * remove email notifications. * move relax pass from testing to mlc_llm * Refactor scripts with se check_eual_ref_scripts_with_emitter function * Lint Fix * Refactor scripts with se check_eual_ref_scripts_with_emitter function * buf fix for matrix support * lint fix * dispatch tensor core based on shapes * update install commands * import scripts * remove shared mem hack * revert change for swizzling * bug fix * tl examples * Enhance Swizzle * lint fix * test fix * lint fix * optimize layout * update tl utils. * macro optimization * test fix
MasterJH5574
pushed a commit
to MasterJH5574/tvm
that referenced
this pull request
Aug 17, 2025
junrushao
added a commit
to junrushao/tvm
that referenced
this pull request
Oct 19, 2025
Upstream : https://github.com/apache/tvm-ffi.git Branch : main New HEAD : 0729193f475c7ab1059524fcfa6ffc742b0addac Subject : feat: Automatically add `__init__` method if available (apache#174) Author : Junru Shao <[email protected]> Date : 2025-10-19T12:28:15-07:00 Delta : 1 commit(s) since 86261005000c Compare : apache/tvm-ffi@8626100...0729193 This commit updates the tvm-ffi submodule to the latest upstream HEAD.
junrushao
added a commit
to junrushao/tvm
that referenced
this pull request
Oct 31, 2025
Upstream : https://github.com/apache/tvm-ffi.git Branch : main New HEAD : 0729193f475c7ab1059524fcfa6ffc742b0addac Subject : feat: Automatically add `__init__` method if available (apache#174) Author : Junru Shao <[email protected]> Date : 2025-10-19T12:28:15-07:00 Delta : 1 commit(s) since 86261005000c Compare : apache/tvm-ffi@8626100...0729193 This commit updates the tvm-ffi submodule to the latest upstream HEAD.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PreCompile usually does not usually do what it intend to do, because any linker or runtime can do lazy initialization which we cannot control. Simply drop it and run the function at least once before benchmark