8 lines
256 B
Python
8 lines
256 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
"""Kernel implementations for vLLM."""
|
|
|
|
from . import aiter_ops, oink_ops, vllm_c, xpu_ops
|
|
|
|
__all__ = ["vllm_c", "aiter_ops", "oink_ops", "xpu_ops"]
|