-
Notifications
You must be signed in to change notification settings - Fork 12.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
Add support for vector casts for fptosi and fptoui #247
Closed
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
* Initial changes * Go back to a single consistent terminator, with yield semantics * Rename terminator to yield * fix parser * Fixed from code review
Merge master into plaidml/plaidml-v1
Implement pass to do TanhOp lowering.
* Add canonicalizer removing rank 0 affine.parallel * Add canonicalizer removing range 1 indexes from affine.parallel loops. Co-authored-by: Tim Zerrell <tim.zerrell@intel.com>
The C SE optimizer was pulling the following two definitions into a single one, but on Linux the types are different and the resulting imported function tyope had no parameters. ArrayRef<Type> results{opType}; std::array<Type, 1> inputs{opType};
Fix an issue where the CSE optimizer was doing a wrong optimization
Fix cmake build
Various upstream fixes
* Implement LoopLikeInterface for affine.parallel, also more tests
Update to latest upstream master
Update to latest LLVM
Add AffineVectorLoadOp/AffineVectorStoreOp builders
Fix bug reported during upstream CR
Drop overly restrictive assertion
Added corresponding tests.
This repository does not accept pull requests. Please follow http://llvm.org/docs/Contributing.html#how-to-submit-a-patch for contribution to LLVM. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Added corresponding tests.