Skip to content

Commit

Permalink
change test name
Browse files Browse the repository at this point in the history
  • Loading branch information
tarang-jain committed Nov 17, 2023
1 parent 9841e6c commit 3f8baaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/test/neighbors/ann_ivf_pq.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ class ivf_pq_test : public ::testing::TestWithParam<ivf_pq_inputs> {
list_data_size,
Compare<uint8_t>{}));
}
void check_packing_compressed(index<IdxT>* index, uint32_t label)
void check_packing_contiguous(index<IdxT>* index, uint32_t label)
{
auto old_list = index->lists()[label];
auto n_rows = old_list->size.load();
Expand Down Expand Up @@ -475,7 +475,7 @@ class ivf_pq_test : public ::testing::TestWithParam<ivf_pq_inputs> {
case 1: {
// Dump and re-write codes for one label
check_packing(&index, label);
check_packing_compressed(&index, label);
check_packing_contiguous(&index, label);
} break;
default: {
// check a small subset of data in a randomly chosen cluster to see if the data
Expand Down

0 comments on commit 3f8baaa

Please sign in to comment.