vllm.models.kimi_k3.amd.ops.kda_prefill ¶
KDA prefill backend selection for ROCm.
The Kimi-K3 KDA layer calls :func:chunk_kda_prefill, which either runs the fused HIP kernels in kda_chunk or falls back to the vendored Triton chunk path.
Functions:
-
chunk_kda_prefill–Run chunk KDA from raw gate and beta projections.
chunk_kda_prefill(q, k, v, raw_g, raw_beta, A_log, g_bias=None, scale=None, initial_state=None, output_final_state=False, lower_bound=None, use_qk_l2norm_in_kernel=False, cu_seqlens=None, chunk_indices=None, chunk_offsets=None, use_fused_chunk=False, out=None, checkpoint_state=None, checkpoint_offsets=None, checkpoint_state_indices=None, state_cache=None, state_indices=None, has_initial_state=None) ¶
Run chunk KDA from raw gate and beta projections.
Parameters:
-
(use_fused_chunk¶bool, default:False) –request the two-kernel ROCm path. It is used only when every one of its preconditions holds; otherwise the Triton path runs unchanged.
-
(out¶Tensor | None, default:None) –buffer the result must land in. Honoured by both backends, so the caller can hand in a slice of its own output and skip a copy.
-
(checkpoint_state¶Tensor | None, default:None) –destination for mid-prefill recurrent state snapshots, letting a later prefix-cache hit resume from a mamba block boundary. See :func:
fused_kda_chunk. -
(checkpoint_offsets¶Tensor | None, default:None) –per-sequence token offset to snapshot at,
0for none. -
(checkpoint_state_indices¶Tensor | None, default:None) –optional per-sequence destination row.
-
(state_cache¶Tensor | None, default:None) –the paged recurrent state. When given, the fused backend reads and writes it in place and neither a gather nor a scatter is needed around this call; the returned final state is
None. -
(state_indices¶Tensor | None, default:None) –per-sequence cache row.
-
(has_initial_state¶Tensor | None, default:None) –per-sequence flag; false starts from a zero state.
Returns:
Source code in vllm/models/kimi_k3/amd/ops/kda_prefill.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | |