diff --git a/cpp/include/raft/sparse/distance/detail/coo_spmv_strategies/hash_strategy.cuh b/cpp/include/raft/sparse/distance/detail/coo_spmv_strategies/hash_strategy.cuh index d21ae29a34..6f11a73002 100644 --- a/cpp/include/raft/sparse/distance/detail/coo_spmv_strategies/hash_strategy.cuh +++ b/cpp/include/raft/sparse/distance/detail/coo_spmv_strategies/hash_strategy.cuh @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2023, NVIDIA CORPORATION. + * Copyright (c) 2021-2024, NVIDIA CORPORATION. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,11 +43,11 @@ namespace detail { template class hash_strategy : public coo_spmv_strategy { public: - using insert_type = - typename cuco::static_map::device_mutable_view; + using insert_type = typename cuco::experimental:: + static_map::device_mutable_view; using smem_type = typename insert_type::slot_type*; - using find_type = - typename cuco::static_map::device_view; + using find_type = typename cuco::experimental:: + static_map::device_view; hash_strategy(const distances_config_t& config_, float capacity_threshold_ = 0.5,