From 61274bbf81cf72823346d3b6c159c25ff9af3981 Mon Sep 17 00:00:00 2001 From: Heisenberg Date: Tue, 15 Oct 2019 13:30:00 +0800 Subject: [PATCH] MS-657 Refine PQ unittest time Former-commit-id: d71dcd0402fb732a569fc3920f12eb8121a6ece4 --- core/src/index/unittest/test_ivf.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/index/unittest/test_ivf.cpp b/core/src/index/unittest/test_ivf.cpp index 3b3e557c4d..4aaddb108b 100644 --- a/core/src/index/unittest/test_ivf.cpp +++ b/core/src/index/unittest/test_ivf.cpp @@ -96,10 +96,10 @@ class ParamGenerator { auto tempconf = std::make_shared(); tempconf->d = DIM; tempconf->gpu_id = device_id; - tempconf->nlist = 100; - tempconf->nprobe = 16; + tempconf->nlist = 25; + tempconf->nprobe = 4; tempconf->k = K; - tempconf->m = 8; + tempconf->m = 4; tempconf->nbits = 8; tempconf->metric_type = knowhere::METRICTYPE::L2; return tempconf;