Practice free →
HomeClaudeaifoundationstransformer_attention › The architectural property that lets self-attent…

The architectural property that lets self-attention parallelise where RNNs cannot is

ASmaller embedding dimension than a recurrent state
BUse of feed-forward layers between attention blocks
CConstant minimum number of sequential operations
DLower asymptotic complexity than recurrent networks
Answer & Solution
Correct answer: C. Constant minimum number of sequential operations
Self-attention is O(1) in sequential operations — all positions computed in parallel within a layer. Recurrent layers are O(n) sequential by definition (each step waits for the previous), which is what blocks GPU parallelism.
Solve this in the app — Claude practice & 24k+ MCQs →
Related questions