SWDEV-363069 - Disable sync force for MT
hipMemcpyAsync doesn't require any forced sync even for sysmem
Change-Id: I83951f6118e84d79c74d5671df62678c5db085a8
[ROCm/clr commit: 52ff4368e5]
This commit is contained in:
zatwierdzone przez
German Andryeyev
rodzic
23fc103652
commit
e3f6a5fa0d
@@ -446,9 +446,13 @@ hipError_t ihipMemcpy(void* dst, const void* src, size_t sizeBytes, hipMemcpyKin
|
||||
return hipErrorInvalidValue;
|
||||
}
|
||||
} else if ((srcMemory == nullptr) && (dstMemory != nullptr)) {
|
||||
isAsync = false;
|
||||
if (AMD_DIRECT_DISPATCH) {
|
||||
isAsync = false;
|
||||
}
|
||||
} else if ((srcMemory != nullptr) && (dstMemory == nullptr)) {
|
||||
isAsync = false;
|
||||
if (AMD_DIRECT_DISPATCH) {
|
||||
isAsync = false;
|
||||
}
|
||||
}
|
||||
amd::Command* command = nullptr;
|
||||
status = ihipMemcpyCommand(command, dst, src, sizeBytes, kind, queue);
|
||||
|
||||
Reference in New Issue
Block a user