Files
enginex-mlu370-vllm/vllm-v0.6.2/tests/kernels/conftest.py
2026-02-04 17:22:39 +08:00

15 lines
314 B
Python

import pytest
from vllm.utils import (create_kv_caches_with_random,
create_kv_caches_with_random_flash)
@pytest.fixture()
def kv_cache_factory():
return create_kv_caches_with_random
@pytest.fixture()
def kv_cache_factory_flashinfer():
return create_kv_caches_with_random_flash