-
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
[Arith] Add tvm::arith::PresburgerSetNode to work with Presburger Set in MLIR #14690
Merged
Conversation
This file contains 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
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 |
multiverstack-intellif
force-pushed
the
intset
branch
2 times, most recently
from
April 21, 2023 08:20
63ca050
to
26fc12e
Compare
tqchen
reviewed
Apr 21, 2023
tqchen
reviewed
Apr 21, 2023
multiverstack-intellif
force-pushed
the
intset
branch
from
April 22, 2023 00:12
26fc12e
to
745ecc2
Compare
github-actions
bot
requested review from
Hzfengsy,
junrushao and
wrongtest-intellif
April 22, 2023 00:46
multiverstack-intellif
changed the title
[Arith] Add IntegerSetNode to work with Presburger Set
[Arith] Add PresburgerSetNode to work with Presburger Set
Apr 22, 2023
multiverstack-intellif
changed the title
[Arith] Add PresburgerSetNode to work with Presburger Set
[Arith] Add tvm::arith::PresburgerSetNode to work with Presburger Set in MLIR
Apr 22, 2023
multiverstack-intellif
force-pushed
the
intset
branch
3 times, most recently
from
April 23, 2023 01:14
3c6d01e
to
9a24a83
Compare
multiverstack-intellif
force-pushed
the
intset
branch
2 times, most recently
from
May 2, 2023 01:23
3262591
to
ddbe714
Compare
@tvm-bot rerun |
4 tasks
vinx13
reviewed
May 16, 2023
multiverstack-intellif
force-pushed
the
intset
branch
2 times, most recently
from
May 27, 2023 11:54
7e8bf08
to
8697d7b
Compare
@tvm-bot rerun |
multiverstack-intellif
force-pushed
the
intset
branch
from
May 29, 2023 13:51
8697d7b
to
86e2725
Compare
any updates? |
multiverstack-intellif
force-pushed
the
intset
branch
from
June 3, 2023 10:35
86e2725
to
19f8f84
Compare
multiverstack-intellif
force-pushed
the
intset
branch
from
July 29, 2023 12:32
19f8f84
to
9dd5648
Compare
wrongtest-intellif
approved these changes
Aug 9, 2023
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::PresburgerSet
to work withmlir::PresburgerSet
as the 1st step for apache/tvm-rfcs#99 , also together with some other necessary modifications:cc @tqchen @wrongtest-intellif @Hzfengsy @junrushao