vllm.kernels.helion.register ¶
vLLM Helion kernel registration with pre-tuned config selection.
This module leverages Helion's internal config selection infrastructure to use pre-tuned configs instead of runtime autotuning.
How Helion Normally Works¶
For each kernel invocation, Helion: 1. Computes a cache key from input arguments 2. Looks up the key in its internal compilation cache 3. On cache miss, runs autotuning to find the best config 4. Compiles and caches the kernel with that config
How We Override It¶
We override two Helion hooks to use pre-tuned configs:
-
key: We provide a key function (derived from config_picker) that computes cache keys matching our pre-tuned config keys. This ensures Helion's internal cache uses keys that correspond to configs we've prepared.
-
autotuner_fn: We provide PresetConfigSearch which, instead of autotuning, simply returns the pre-tuned config for the computed key. On cache miss, Helion calls our autotuner which returns the author-prepared config.
Both hooks use the same config_picker logic to ensure the cache key computed by key matches the config returned by the autotuner.
Key Classes¶
- HelionKernelWrapper: Wraps raw kernel + config_picker, creates configured ops
- ConfiguredHelionKernel: Platform-specific kernel registered as PyTorch custom op
- PresetConfigSearch: Custom autotuner that returns pre-tuned configs
ConfiguredHelionKernel ¶
A configured Helion kernel bound to a specific platform.
Source code in vllm/kernels/helion/register.py
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 | |
_create_key_computer ¶
Create a key computer function derived from the config picker.
The returned function receives kernel arguments unpacked (args) to match Helion's key signature (called as self._key_fn(args)).
Source code in vllm/kernels/helion/register.py
HelionKernelWrapper ¶
Wrapper for Helion kernels that creates config-specific PyTorch custom ops.
Source code in vllm/kernels/helion/register.py
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 | |
register_input_generator ¶
register_input_generator(
generator_func: Callable[
[], dict[str, tuple[Any, ...]]
],
) -> Callable[[], dict[str, tuple[Any, ...]]]
Register a function to generate inputs for autotuning and benchmarking.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
generator_func | Callable[[], dict[str, tuple[Any, ...]]] | Function that returns dict[str, tuple] where: - key: Configuration identifier (e.g., "4096", "hidden_4096") - value: Tuple of arguments to pass to the kernel | required |
Returns:
| Type | Description |
|---|---|
Callable[[], dict[str, tuple[Any, ...]]] | The registered function (for decorator usage) |
Example
@kernel_wrapper.register_input_generator def generate_inputs(): return { "4096": (torch.randn(4096, device="cuda"), 0.5), "8192": (torch.randn(8192, device="cuda"), 0.5), }
Source code in vllm/kernels/helion/register.py
run_autotune ¶
Run autotuning for a single input configuration.
Source code in vllm/kernels/helion/register.py
PresetConfigSearch ¶
Bases: BaseAutotuner
Custom autotuner that uses a preset config selector instead of autotuning.
Source code in vllm/kernels/helion/register.py
register_kernel ¶
register_kernel(
op_name_or_func: Callable,
*,
fake_impl: Callable | None = None,
helion_settings: Settings | None = None,
) -> HelionKernelWrapper
register_kernel(
op_name_or_func: str | None = None,
*,
fake_impl: Callable | None = None,
helion_settings: Settings | None = None,
) -> Callable[[Callable], HelionKernelWrapper]
register_kernel(
op_name_or_func: str | Callable | None = None,
*,
fake_impl: Callable | None = None,
helion_settings: Settings | None = None,
) -> (
HelionKernelWrapper
| Callable[[Callable], HelionKernelWrapper]
)
Decorator to register a Helion kernel function as a HelionKernelWrapper.
Wraps the raw kernel function in a HelionKernelWrapper and registers it in the global kernel registry. Auto-generates fake_impl if not provided.