Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
enp1s0 committed Mar 20, 2024
1 parent ff7d3b2 commit 103b9c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/include/raft/neighbors/detail/cagra/cagra_search.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ template <class T,
class InternalIdxT,
class DistanceT,
class CagraSampleFilterT>
void lauch_vpq_search_main_core(
void launch_vpq_search_main_core(
raft::resources const& res,
const vpq_dataset<DatasetT, DatasetIdxT>* vpq_dset,
search_params params,
Expand Down Expand Up @@ -275,7 +275,7 @@ void search_main(raft::resources const& res,
RAFT_FAIL("FP32 VPQ dataset support is coming soon");
} else if (auto* vpq_dset = dynamic_cast<const vpq_dataset<half, ds_idx_type>*>(&index.data());
vpq_dset != nullptr) {
lauch_vpq_search_main_core<T, half, ds_idx_type, InternalIdxT, DistanceT, CagraSampleFilterT>(
launch_vpq_search_main_core<T, half, ds_idx_type, InternalIdxT, DistanceT, CagraSampleFilterT>(
res, vpq_dset, params, graph_internal, queries, neighbors, distances, sample_filter);
} else if (auto* empty_dset = dynamic_cast<const empty_dataset<ds_idx_type>*>(&index.data());
empty_dset != nullptr) {
Expand Down

0 comments on commit 103b9c0

Please sign in to comment.