Commit aa8ab2e8 authored by jinhai's avatar jinhai
Browse files

Merge branch 'refine_pq_unittest' into 'branch-0.5.0'

MS-657 Refine PQ unittest time

See merge request megasearch/milvus!727

Former-commit-id: 847cc50558ea2d9490b13b33923c1d8078efcbb3
parents 3c9b2c39 6b625e82
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -96,10 +96,10 @@ class ParamGenerator {
            auto tempconf = std::make_shared<knowhere::IVFPQCfg>();
            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;