vllm.compilation.base_piecewise_backend
AbstractPiecewiseBackend
¶
Bases: Protocol
PiecewiseBackend interface that allows platforms to extend piecewise static graph.
Source code in vllm/compilation/base_piecewise_backend.py
__call__
¶
__call__(*args) -> Any
Executes the compiled graph for given input args.
If this is the first invocation, executes the general compiled graph and initiates the compilation process tracking. For subsequent calls, dynamically dispatches execution to either a compiled graph or a static graph based on the input shape.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*args
|
Variable length input arguments to be passed into the
graph. The symbolic shape is expected to be in position
|
()
|
Returns:
Name | Type | Description |
---|---|---|
Any |
Any
|
Output of the executed graph. This can be from the general |
Any
|
compiled graph, a specialized compiled version for the given shape, |
|
Any
|
or a replayed static graph. |
Source code in vllm/compilation/base_piecewise_backend.py
__init__
¶
__init__(
graph: GraphModule,
vllm_config: VllmConfig,
graph_pool: Any,
piecewise_compile_index: int,
total_piecewise_compiles: int,
sym_shape_indices: list[int],
compiled_graph_for_general_shape: Callable,
vllm_backend: VllmBackend,
**kwargs,
)
Initializes the PiecewiseBackend class with compilation and execution-related configurations.
This class handles piecewise compilation, graph capturing, and dispatching for specific input shapes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
graph
|
GraphModule
|
The graph represented in fx. |
required |
vllm_config
|
VllmConfig
|
Global configuration for vLLM. |
required |
graph_pool
|
Any
|
Graph memory pool handle, e.g.,
|
required |
piecewise_compile_index
|
int
|
Index of the current piecewise subgraph. |
required |
total_piecewise_compiles
|
int
|
Total number of piecewise-compiled graphs. |
required |
sym_shape_indices
|
list[int]
|
Indices of symbolic shape. |
required |
compiled_graph_for_general_shape
|
Callable
|
Callable that executes the graph compiled for general shapes. |
required |
vllm_backend
|
VllmBackend
|
Backend compiler that manages compilation and graph runtime for vLLM. |
required |
Other Parameters:
Name | Type | Description |
---|---|---|
kwargs |
Additional keyword arguments reserved for future extensions or custom platforms. |