Commit 180b1040 authored by zhiru's avatar zhiru
Browse files

update


Former-commit-id: b4df354d218f52c8d8fc00e623eebfc96191b3c7
parent 39aed079
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -702,7 +702,7 @@ TEST_F(GPURESTEST, copyandsearch) {
}

TEST_F(GPURESTEST, TrainAndSearch) {
    index_type = "GPUIVFSQ";
    index_type = "GPUIVF";
    index_ = IndexFactory(index_type);

    auto conf = std::make_shared<knowhere::IVFSQCfg>();
+2 −3
Original line number Diff line number Diff line
@@ -297,6 +297,7 @@ TEST_F(DBTest, SEARCH_TEST) {
        ASSERT_TRUE(stat.ok());
    }

#ifdef CUSTOMIZATION
    //test FAISS_IVFSQ8H optimizer
    index.engine_type_ = (int)milvus::engine::EngineType::FAISS_IVFSQ8H;
    db_->CreateIndex(TABLE_NAME, index); // wait until build index finish
@@ -314,9 +315,7 @@ TEST_F(DBTest, SEARCH_TEST) {
        stat = db_->Query(TABLE_NAME, file_ids, k, nq, 10, xq.data(), dates, results);
        ASSERT_TRUE(stat.ok());
    }


    // TODO(lxj): add groundTruth assert
#endif-
}

TEST_F(DBTest, PRELOADTABLE_TEST) {