vllm.ir.op ¶
RESERVED_PROVIDERS module-attribute ¶
Providers that are reserved and cannot be used for custom implementations.
_ENABLE_TORCH_WRAP module-attribute ¶
_ENABLE_TORCH_WRAP: bool = True
Global override flag to control torch op layer wrapping.
IrOp ¶
Source code in vllm/ir/op.py
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 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 | |
_fake_call ¶
_fake_call(*args, **kwargs) -> Any
Call to the fake implementation of the op. We use indirection because we want users to be able to register fake later but also want it to fall back to native directly by default, instead of going through the dispatching mechanism.
Source code in vllm/ir/op.py
_inner_call ¶
_inner_call(*args, **kwargs) -> Any
Eager call to torch op lands here. When torch wrapping is disabled, call routes straight here instead of going through torch op dispatching.
Source code in vllm/ir/op.py
apply_arg_defaults ¶
apply_arg_defaults(args) -> tuple
Return args with default values applied. Defaults are taken from the native implementation signature.
SHOULD NOT BE USED IN THE DISPATCH PATH (SLOW). Only for Inductor lowering.
Source code in vllm/ir/op.py
dispatch ¶
dispatch(*args, **kwargs) -> IrOpImpl
Dispatch to the appropriate implementation based on current priority and argument support checks. Returns the selected IrOpImpl.
THIS FUNCTION IS ON THE HOT PATH (OP DISPATCH), MUST BE FAST.
Source code in vllm/ir/op.py
get_priority ¶
register_fake ¶
Register a fake impl for the torch custom op. If this method is not called, the native implementation is used directly for the fake implementation.
register_impl ¶
register_impl(
provider: str,
*,
supported: bool = True,
supports_args: Callable[..., bool] | None = None,
)
Register an implementation for this custom op. :param provider: The name of the provider, must be unique. :param supported: Static support check, use this to check platform support. :param supports_args: Dynamic arg support check, used for types and shapes. :return: A decorator that registers the implementation.
The decorated function must have the same semantics and signature as the native implementation.
The provider name must be unique and not one of the RESERVED_PROVIDERS. The supported and supports_args parameters should not be used to implement custom enablement logic based on global state (e.g. environment variables). Instead, supported param should only be used to check for platform support (e.g. whether a specific hardware or library is available). supports_args should be used to check whether the provided arguments are compatible with the implementation. For custom enablement logic, set op impl priority.
Example:
@my_op.register_impl("my_provider", supported=torch.cuda.is_available())
def my_provider_impl(x: torch.Tensor, y: torch.Tensor) -> torch.Tensor: ...
Source code in vllm/ir/op.py
set_priority ¶
Context manager to set the dispatch priority for implementations for this op.
Source code in vllm/ir/op.py
IrOpImpl ¶
Source code in vllm/ir/op.py
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 | |
supports_all_args property ¶
supports_all_args: bool
Check if this implementation supports all args unconditionally.
uuid ¶
Compile-time hash to uniquely determine whether the implementation has changed. Used by vllm-compile hash mechanism and torch.compile lowering pass uuid to control the vLLM compile cache and AOTAutograd/Inductor caches respectively.
Source file contents do not change so we cache uuid. TODO(luka): Cache the file hash as multiple impls are likely in the same file.
Source code in vllm/ir/op.py
enable_torch_wrap ¶
enable_torch_wrap(enable: bool = True)
Context manager to enable/disable torch custom op wrapping for vLLM IR ops. When torch wrapping is disabled, the torch custom op layer is skipped and IR ops dispatch directly to the implementation. Helpful for avoiding torch dispatch overhead in eager mode and avoiding the need for lowering for platforms not using Inductor.
Source code in vllm/ir/op.py
register_op ¶
register_op(
f: Callable | None = None, *, name: str | None = None
) -> IrOp | Callable[[Callable], IrOp]
Register a new vLLM IR op.
:param f: the native implementation of the op :param name: the name of the op, defaults to the function name :return: the IrOp object if f is provided, otherwise a decorator
Example usage: ```python @vllm.ir.register_op def my_op(x: torch.Tensor, y: torch.Tensor) -> torch.Tensor: return x + y
@vllm.ir.register_op(name="custom_mul") def multiply(x: torch.Tensor, y: torch.Tensor) -> torch.Tensor: return x * y