Skip to content

Commit

Permalink
kp_memory_usage.cpp: remove 4 parameter names from begin_deep_copy si…
Browse files Browse the repository at this point in the history
…nce they are not used in the function.
  • Loading branch information
vlkale committed Sep 19, 2024
1 parent 041f3f0 commit dbcdeb7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions profiling/memory-usage/kp_memory_usage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<std::mutex> lock(m);

int space_dst = num_spaces;
Expand Down

0 comments on commit dbcdeb7

Please sign in to comment.