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

Change-Id: Id6a100257d47211cc9868ba84a2964302e4f069c
This commit is contained in:
Anusha GodavarthySurya
2021-07-07 02:28:22 -07:00
committed by Anusha Godavarthy Surya
orang tua d529637fbc
melakukan 4025725ed6
@@ -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 {