Allow opt-out of implicit bounds-checking - #563
Merged
Conversation
This was referenced Feb 7, 2025
Closed
Member
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
vchuravy
marked this pull request as ready for review
February 7, 2025 11:31
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## vc/pocl #563 +/- ##
========================================
Coverage 0.00% 0.00%
========================================
Files 12 21 +9
Lines 777 1513 +736
========================================
- Misses 777 1513 +736 ☔ View full report in Codecov by Sentry. |
Contributor
Benchmark Results
Benchmark PlotsA plot of the benchmark results have been uploaded as an artifact to the workflow run for this PR. |
vchuravy
force-pushed
the
02-07-allow_opt-out_of_implicit_bounds-checking
branch
from
February 7, 2025 13:51
48e3752 to
e565304
Compare
vchuravy
force-pushed
the
02-07-allow_opt-out_of_implicit_bounds-checking
branch
from
February 10, 2025 15:08
e565304 to
4dd0acc
Compare
vchuravy
force-pushed
the
vc/pocl
branch
2 times, most recently
from
February 12, 2025 15:23
777c099 to
3bb80ac
Compare
vchuravy
restored the
02-07-allow_opt-out_of_implicit_bounds-checking
branch
February 13, 2025 07:27
vchuravy
force-pushed
the
02-07-allow_opt-out_of_implicit_bounds-checking
branch
from
February 13, 2025 08:07
4dd0acc to
5e03ecf
Compare
vchuravy
force-pushed
the
02-07-allow_opt-out_of_implicit_bounds-checking
branch
from
February 13, 2025 10:05
5e03ecf to
e0c44ee
Compare
vchuravy
force-pushed
the
02-07-allow_opt-out_of_implicit_bounds-checking
branch
from
February 13, 2025 10:30
e0c44ee to
a73ea1f
Compare
vchuravy
force-pushed
the
02-07-allow_opt-out_of_implicit_bounds-checking
branch
from
February 13, 2025 16:02
a73ea1f to
ed45e9b
Compare
KernelAbstractions currently creates kernels that look like: ``` if __validindex(ctx) # Body end ``` This is problematic due to the convergence requirement on `@synchronize`.
vchuravy
force-pushed
the
02-07-allow_opt-out_of_implicit_bounds-checking
branch
from
February 13, 2025 16:25
ed45e9b to
0aa6a5b
Compare
Member
Author
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
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.

KernelAbstractions currently creates kernels that look like:
This is problematic due to the convergence requirement on
@synchronize.