SWDEV-240806 - updated hipMemcpyKind in nvidia tyes from enum to typedef

Change-Id: Id6a100257d47211cc9868ba84a2964302e4f069c


[ROCm/hip commit: 4025725ed6]
Этот коммит содержится в:
Anusha GodavarthySurya
2021-07-07 02:28:22 -07:00
коммит произвёл Anusha Godavarthy Surya
родитель a4ff63a29b
Коммит 51a500812e
+1 -1
Просмотреть файл
@@ -33,7 +33,7 @@ THE SOFTWARE.
bool p_async = false;
// ****************************************************************************
hipError_t memcopy(void* dst, const void* src, size_t sizeBytes, enum hipMemcpyKind kind) {
hipError_t memcopy(void* dst, const void* src, size_t sizeBytes, hipMemcpyKind kind) {
if (p_async) {
return hipMemcpyAsync(dst, src, sizeBytes, kind, NULL);
} else {