From dd4f9009c8e6276f888bc4d9a79d12d2e5b7a357 Mon Sep 17 00:00:00 2001 From: Charles Hastings Date: Sun, 10 Mar 2024 09:38:34 -0700 Subject: [PATCH] remove NVTX calls, not necessary for this prototype --- cpp/libcugraph_etl/include/hash/concurrent_unordered_map.cuh | 2 -- 1 file changed, 2 deletions(-) diff --git a/cpp/libcugraph_etl/include/hash/concurrent_unordered_map.cuh b/cpp/libcugraph_etl/include/hash/concurrent_unordered_map.cuh index 18e3a6669ad..a1aab595f2f 100644 --- a/cpp/libcugraph_etl/include/hash/concurrent_unordered_map.cuh +++ b/cpp/libcugraph_etl/include/hash/concurrent_unordered_map.cuh @@ -25,7 +25,6 @@ #include #include -#include #include #include #include @@ -171,7 +170,6 @@ class concurrent_unordered_map { const Equality& equal = key_equal(), const allocator_type& allocator = allocator_type()) { - CUDF_FUNC_RANGE(); using Self = concurrent_unordered_map; // Note: need `(*p).destroy` instead of `p->destroy` here