Open
Conversation
Introduces a 2D parallel prefix scan challenge where solvers must compute the summed area table of an H×W image. The key GPU insight is that the column-wise scan pass has strided (non-coalesced) memory access in row-major layout, motivating the shared-memory transpose trick. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
kunal-mansukhani
approved these changes
Mar 3, 2026
Contributor
Author
Challenge Review: Integral Image (Challenge 77)Checklist Verificationchallenge.html ✅
challenge.py ✅
Starter files ✅
ValidationWrote and ran a CUDA reference solution (row-wise prefix scan + column-wise prefix scan) against the platform:
|
Contributor
Author
Review: Challenge 77 — Integral ImageRan full checklist verification and validated with a CUDA solution on NVIDIA Tesla T4. challenge.html ✅
challenge.py ✅
Starter files ✅
Validation ✅Wrote and ran a CUDA solution (two-pass: row-wise then column-wise prefix scan). All 10 functional tests and performance test passed on Tesla T4. |
Contributor
Author
Challenge Review: Add challenge 77 — Integral Image (Medium)Reviewed all files against the CLAUDE.md checklist. A correct CUDA solution was written and submitted — all functional tests passed and the performance test completed successfully on NVIDIA TESLA T4. challenge.html ✅
challenge.py ✅
Starter files ✅All 6 files present:
LGTM! All checklist items pass. |
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.
Summary
output[i][j] = sum of input[0..i, 0..j]for an H×W float32 imageWhat makes this interesting
This challenge requires thinking about:
Test plan
pre-commit run --all-filespasses (black, isort, flake8, clang-format)🤖 Generated with Claude Code