From dbcdeb71f4fe31460b1f750e60274b42a52e9444 Mon Sep 17 00:00:00 2001 From: Vivek Kale Date: Thu, 19 Sep 2024 14:03:16 -0700 Subject: [PATCH] kp_memory_usage.cpp: remove 4 parameter names from begin_deep_copy since they are not used in the function. --- profiling/memory-usage/kp_memory_usage.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/profiling/memory-usage/kp_memory_usage.cpp b/profiling/memory-usage/kp_memory_usage.cpp index 26cd714ae..196ca84e0 100644 --- a/profiling/memory-usage/kp_memory_usage.cpp +++ b/profiling/memory-usage/kp_memory_usage.cpp @@ -142,10 +142,10 @@ void kokkosp_deallocate_data(const SpaceHandle space, const char* /*label*/, } } -void kokkosp_begin_deep_copy(SpaceHandle dst_handle, const char* dst_name, - const void* dst_ptr, SpaceHandle src_handle, - const char* src_name, const void* src_ptr, - uint64_t size) { +void kokkosp_begin_deep_copy(SpaceHandle dst_handle, const char* /* dst_name */, + const void* /* dst_ptr */, SpaceHandle src_handle, + const char* /* src_name */, + const void* /* src_ptr */, uint64_t size) { std::lock_guard lock(m); int space_dst = num_spaces;