Open
Conversation
Introduces the 2D Discrete Fourier Transform challenge, teaching GPU programmers to implement a row-column decomposition FFT. Key concepts: batched 1D FFTs, coalesced vs strided memory access patterns for row/column processing, and shared-memory butterfly kernels. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
Author
Challenge Validation: 2D FFT (Challenge #78)Reviewed all files against the CLAUDE.md checklist and validated with a working CUDA solution. Checklist Verificationchallenge.html ✅
challenge.py ✅
Starter files ✅ (all 6 present)
Solution ValidationWrote a pure CUDA row-column DFT implementation and submitted via All 10 functional test cases passed and the performance test (2048×2048) completed successfully. Challenge is ready to merge. |
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
Challenge Details
M × Nstored as interleaved real/imaginary float pairs (row-major,M*N*2total floats)Why this is interesting
The 2D FFT is a great GPU challenge because:
Checklist
challenge.htmlstarts with<p>, has<h2>sections, first example matchesgenerate_example_test(), uses LaTeX matrices for 2D datachallenge.pyinheritsChallengeBase, all 6 methods present, assertions on shape/dtype/device, 10 functional test casespre-commit run --all-files)run_challenge.py --action run🤖 Generated with Claude Code