Add challenge 92: Decaying Causal Attention (Medium)#243
Open
claude[bot] wants to merge 1 commit intomainfrom
Open
Add challenge 92: Decaying Causal Attention (Medium)#243claude[bot] wants to merge 1 commit intomainfrom
claude[bot] wants to merge 1 commit intomainfrom
Conversation
Implements the core computation of the Retention mechanism (RetNet): causal unnormalized attention with geometric decay weights. Each position n attends to all past positions m <= n with weight gamma^(n-m), requiring solvers to reason about triangular memory access patterns, on-the-fly decay factor computation, and tiled accumulation strategies. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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[n] = Σ_{m≤n} γ^(n-m) · (Q[n]·K[m]/√d) · V[m]What solvers learn
γ^(n-m)efficiently without materializing the full decay matrixChallenge details
Q, K, Veach[seq_len, d_model]float32, scalargamma∈ (0, 1]seq_len=4,096,d_model=64(typical LLM head dimension)Relation to existing challenges
Distinct from all existing and pending attention challenges:
Test plan
pre-commit run --all-filespasses (black, isort, flake8, clang-format, mojo format)run_challenge.pyvalidation passed on NVIDIA TESLA T4🤖 Generated with Claude Code