From 204a5424910314926d8d9694a8c62585e06fc665 Mon Sep 17 00:00:00 2001 From: Yunsong Wang Date: Mon, 5 Feb 2024 13:04:47 -0800 Subject: [PATCH] Update cuco-related code --- .../detail/coo_spmv_strategies/hash_strategy.cuh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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,