-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[Arith] Add tvm::arith::PresburgerSetNode to work with Presburger Set in MLIR #14690
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
Collaborator
|
Thanks for contributing to TVM! Please refer to the contributing guidelines https://tvm.apache.org/docs/contribute/ for useful information and tips. Please request code reviews from Reviewers by @-ing them in a comment.
Generated by tvm-bot |
63ca050 to
26fc12e
Compare
tqchen
reviewed
Apr 21, 2023
tqchen
reviewed
Apr 21, 2023
26fc12e to
745ecc2
Compare
3c6d01e to
9a24a83
Compare
3262591 to
ddbe714
Compare
Contributor
Author
|
@tvm-bot rerun |
4 tasks
vinx13
reviewed
May 16, 2023
7e8bf08 to
8697d7b
Compare
Contributor
Author
|
@tvm-bot rerun |
8697d7b to
86e2725
Compare
Member
|
any updates? |
86e2725 to
19f8f84
Compare
19f8f84 to
9dd5648
Compare
wrongtest-intellif
approved these changes
Aug 9, 2023
Contributor
junrushao
pushed a commit
that referenced
this pull request
Aug 31, 2023
Hi folks, Some fixes for MLIR based analyzer module introduced by #14690 . --- * Make CMake at par with LLVM info: ``` {...} -- Use llvm-config=llvm-config-64 -- LLVM libdir: /usr/lib64 -- Found MLIR -- Build with MLIR -- Set TVM_MLIR_VERSION=160 -- Found LLVM_INCLUDE_DIRS=/usr/include {...} -- USE_MKL : OFF -- USE_MLIR : ON -- USE_MSVC_MT : OFF {...} ``` * Fix several compilation errors: ``` error: cannot convert 'llvm::SmallVector<long int>' to 'llvm::ArrayRef<mlir::presburger::MPInt>' error: no matching function for call to 'tvm::IntImm::IntImm(tvm::runtime::DataType, mlir::presburger::MPInt&)' note: no known conversion for argument 2 from 'mlir::presburger::MPInt' to 'int64_t' {aka 'long int'} ``` Tested using: ```llvm/mlir 16.0.6```, ```llvm/mlir 15.0.7```, ```llvm/mlir 17.0.0rc3```
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.
Add basic structure for
arith::PresburgerSetto work withmlir::PresburgerSetas the 1st step for apache/tvm-rfcs#99 , also together with some other necessary modifications:cc @tqchen @wrongtest-intellif @Hzfengsy @junrushao