We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7b7eaf commit ed2901eCopy full SHA for ed2901e
deep_core/include/deep_core/plugin_interfaces/backend_memory_allocator.hpp
@@ -101,17 +101,6 @@ class BackendMemoryAllocator
101
*/
102
void copy_device_to_device(void * dst, const void * src, size_t bytes);
103
104
- /**
105
- * @brief Copy data from host (CPU) to device memory - alias for copy_from_host
106
- * @param dst Destination device memory pointer
107
- * @param src Source host memory pointer
108
- * @param bytes Number of bytes to copy
109
- */
110
- void copy_host_to_device(void * dst, const void * src, size_t bytes)
111
- {
112
- copy_from_host(dst, src, bytes);
113
- }
114
-
115
protected:
116
/**
117
* @brief Implementation of copy_from_host (to be overridden by backends)
0 commit comments