From 90bd54d23f0ea75b83afe9fe54923481dd101421 Mon Sep 17 00:00:00 2001 From: del-zhenwu <56623710+del-zhenwu@users.noreply.github.com> Date: Thu, 2 Jul 2020 17:33:56 +0800 Subject: [PATCH] enable ivf_pq search cases on GPU (#2708) * update cron on 0.10.1 Signed-off-by: zw * enable ivf_pq search cases on GPU Signed-off-by: zw Co-authored-by: zw --- tests/milvus_python_test/entity/test_search.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/milvus_python_test/entity/test_search.py b/tests/milvus_python_test/entity/test_search.py index aa1ad881..72f9639e 100644 --- a/tests/milvus_python_test/entity/test_search.py +++ b/tests/milvus_python_test/entity/test_search.py @@ -93,9 +93,6 @@ class TestSearchBase: if str(connect._cmd("mode")[1]) == "CPU": if request.param["index_type"] == IndexType.IVF_SQ8H: pytest.skip("sq8h not support in CPU mode") - if str(connect._cmd("mode")[1]) == "GPU": - if request.param["index_type"] == IndexType.IVF_PQ: - pytest.skip("ivfpq not support in GPU mode") return request.param @pytest.fixture( -- GitLab