.. Copyright (c) 2022-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved. See LICENSE for license information. JAX: Attention with TransformerEngine ===================================== Transformer Engine's JAX attention APIs support self-attention and cross-attention with MHA, GQA, and MQA. Inputs can use standard BSHD or packed THD layouts, with Q/K/V supplied separately or in packed forms. Common options include causal and padding masks, bias, dropout, sliding-window attention (SWA), attention sinks, and experimental ``score_mod`` callbacks for FlexAttention-style customization. The API also supports different Q/K and V head dimensions, as used by the attention operation after the projection stages in DeepSeek-style MLA. For long contexts, selected BSHD and THD configurations support context parallelism with Ring or AllGather collectives. Exact fused-kernel availability depends on the input shape, dtype, GPU architecture, and feature combination; see the `JAX DotProductAttention API reference <../../api/jax.html#transformer_engine.jax.flax.DotProductAttention>`_ for the full interface. Choose the tutorial that matches how the sequence dimension is distributed in your model. `← Back to the JAX integration overview <../te_jax_integration.html>`_ Pick a tutorial --------------- .. list-table:: :header-rows: 1 :widths: 30, 70 * - Tutorial - Covers * - `Single-GPU Attention `_ - BSHD GQA + SWA; performance against a native JAX baseline; DeepSeek-style MLA head dimensions * - `Context-Parallel Attention `_ - Packed THD GQA + SWA on four GPUs; Ring and AllGather CP with striped load balancing; performance against single-GPU fused attention .. toctree:: :hidden: attention_single_gpu attention_context_parallel