From e0d18c9882695e9c70a47a3de1b31abe1b9c3af2 Mon Sep 17 00:00:00 2001 From: Chuck Hastings <45364586+ChuckHastings@users.noreply.github.com> Date: Sun, 10 Mar 2024 20:32:54 -0400 Subject: [PATCH] remove NVTX calls in libcugraph_etl (#4229) NVTX calls are not necessary for this prototype capability. Authors: - Chuck Hastings (https://github.com/ChuckHastings) Approvers: - Naim (https://github.com/naimnv) - Bradley Dice (https://github.com/bdice) - Seunghwa Kang (https://github.com/seunghwak) URL: https://github.com/rapidsai/cugraph/pull/4229 --- 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