vllm.v1.cudagraph_dispatcher ¶
CudagraphDispatcher ¶
Runtime cudagraph dispatcher to dispatch keys for multiple set of cudagraphs.
The dispatcher stores two sets of dispatch keys, one for PIECEWISE and one for FULL cudagraph runtime mode. The keys are initialized depending on attention support and what cudagraph mode is set in CompilationConfig. The keys stored in dispatcher are the only source of truth for valid cudagraphs that can be dispatched at runtime.
At runtime, the dispatch method generates the runtime cudagraph mode (FULL, PIECEWISE, or NONE for no cudagraph) and the valid key (batch descriptor) based on the input key. After dispatching (communicated via forward context), the cudagraph wrappers will trust the dispatch key to either capture or replay (if the mode matches), or pass through to the underlying runnable without cudagraph (if the mode does not match or mode is NONE).
Source code in vllm/v1/cudagraph_dispatcher.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | |
cudagraph_keys instance-attribute ¶
cudagraph_keys: dict[
CUDAGraphMode, set[BatchDescriptor]
] = {PIECEWISE: set(), FULL: set()}
uniform_decode_query_len instance-attribute ¶
__init__ ¶
__init__(vllm_config: VllmConfig)
Source code in vllm/v1/cudagraph_dispatcher.py
_compute_bs_to_padded_graph_size ¶
Pre-compute the mapping from batch size to padded graph size.
Source code in vllm/v1/cudagraph_dispatcher.py
_create_padded_batch_descriptor ¶
_create_padded_batch_descriptor(
num_tokens: int, uniform_decode: bool, has_lora: bool
) -> BatchDescriptor
Source code in vllm/v1/cudagraph_dispatcher.py
add_cudagraph_key ¶
add_cudagraph_key(
runtime_mode: CUDAGraphMode,
batch_descriptor: BatchDescriptor,
)
Source code in vllm/v1/cudagraph_dispatcher.py
dispatch ¶
dispatch(
num_tokens: int,
uniform_decode: bool = False,
has_lora: bool = False,
disable_full: bool = False,
) -> tuple[CUDAGraphMode, BatchDescriptor]
Given conditions(e.g.,batch descriptor and if using piecewise only), dispatch to a cudagraph runtime mode and the valid batch descriptor. A new batch descriptor is returned as we might dispatch a uniform batch to a graph that supports a more general batch (uniform to non-uniform).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
num_tokens | int | Number of tokens in the batch. | required |
uniform_decode | bool | Whether the batch is uniform decode (i.e. uniform and query length is uniform_decode_query_len). | False |
has_lora | bool | Whether LoRA is active. | False |
disable_full | bool | If True, skip FULL cudagraph checks and return PIECEWISE or NONE only. (can be used for features like cascade attention that are not supported by full cudagraphs) | False |
Source code in vllm/v1/cudagraph_dispatcher.py
get_capture_descs ¶
get_capture_descs() -> list[
tuple[CUDAGraphMode, list[BatchDescriptor]]
]
Returns capture descriptors for cudagraph capturing.
Returns:
| Type | Description |
|---|---|
list[tuple[CUDAGraphMode, list[BatchDescriptor]]] | List of (runtime_mode, batch_descriptors) tuples, ordered PIECEWISE |
list[tuple[CUDAGraphMode, list[BatchDescriptor]]] | first then FULL. Batch descriptors are sorted largest-first for |
list[tuple[CUDAGraphMode, list[BatchDescriptor]]] | memory efficiency. |
Source code in vllm/v1/cudagraph_dispatcher.py
initialize_cudagraph_keys ¶
initialize_cudagraph_keys(
cudagraph_mode: CUDAGraphMode,
uniform_decode_query_len: int = 1,
)