Skip to content

Commit

Permalink
Merge pull request NVIDIA#251 from zheng95z/patch-1
Browse files Browse the repository at this point in the history
add a missing 'device_memory::' before a function
  • Loading branch information
hwu36 authored Apr 26, 2021
2 parents 7c783ad + a8f6f8e commit 8f8a80c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/util/include/cutlass/util/device_memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ class DeviceAllocation {
smart_ptr.reset(device_memory::allocate<T>(p.capacity));
capacity = p.capacity;
}
copy_device_to_device(smart_ptr.get(), p.get(), capacity);
device_memory::copy_device_to_device(smart_ptr.get(), p.get(), capacity);
return *this;
}

Expand Down

0 comments on commit 8f8a80c

Please sign in to comment.