Skip to content

Commit

Permalink
disable batch tests
Browse files Browse the repository at this point in the history
  • Loading branch information
divyegala committed Oct 23, 2024
1 parent 252a62d commit a99ebd7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cpp/test/neighbors/ann_nn_descent/test_float_uint32_t.cu
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ namespace cuvs::neighbors::nn_descent {
typedef AnnNNDescentTest<float, float, std::uint32_t> AnnNNDescentTestF_U32;
TEST_P(AnnNNDescentTestF_U32, AnnNNDescent) { this->testNNDescent(); }

typedef AnnNNDescentBatchTest<float, float, std::uint32_t> AnnNNDescentBatchTestF_U32;
TEST_P(AnnNNDescentBatchTestF_U32, AnnNNDescentBatch) { this->testNNDescentBatch(); }
// typedef AnnNNDescentBatchTest<float, float, std::uint32_t> AnnNNDescentBatchTestF_U32;
// TEST_P(AnnNNDescentBatchTestF_U32, AnnNNDescentBatch) { this->testNNDescentBatch(); }

INSTANTIATE_TEST_CASE_P(AnnNNDescentTest, AnnNNDescentTestF_U32, ::testing::ValuesIn(inputs));
INSTANTIATE_TEST_CASE_P(AnnNNDescentBatchTest,
AnnNNDescentBatchTestF_U32,
::testing::ValuesIn(inputsBatch));
// INSTANTIATE_TEST_CASE_P(AnnNNDescentBatchTest,
// AnnNNDescentBatchTestF_U32,
// ::testing::ValuesIn(inputsBatch));

} // namespace cuvs::neighbors::nn_descent

0 comments on commit a99ebd7

Please sign in to comment.