From cd821ea5d29f66ee0fd3a6c4580a089011e95343 Mon Sep 17 00:00:00 2001 From: Ning Xie Date: Fri, 23 May 2025 19:49:18 +0800 Subject: [PATCH] [CI] fix kv_cache_type argument (#18594) Signed-off-by: Andy Xie --- tests/plugins_tests/test_platform_plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/plugins_tests/test_platform_plugins.py b/tests/plugins_tests/test_platform_plugins.py index 9d6872e0e0772..207de53abd8d1 100644 --- a/tests/plugins_tests/test_platform_plugins.py +++ b/tests/plugins_tests/test_platform_plugins.py @@ -29,5 +29,5 @@ def test_oot_attention_backend(monkeypatch: pytest.MonkeyPatch): # ignore the backend env variable if it is set with monkeypatch.context() as m: m.setenv(STR_BACKEND_ENV_VAR, STR_INVALID_VAL) - backend = get_attn_backend(16, torch.float16, torch.float16, 16, False) + backend = get_attn_backend(16, torch.float16, "auto", 16, False) assert backend.get_name() == "Dummy_Backend"