Updated review comment
Change-Id: Ic7f9f33dd23c975f2a7a0f0d485a3d2a457c62bb
This commit is contained in:
committed by
Sarbojit Sarkar
parent
a7aa84f73a
commit
1ef88375c2
@@ -1098,6 +1098,11 @@ hipError_t ihipMemcpyDtoD(void* srcDevice,
|
||||
return hipErrorOutOfMemory;
|
||||
}
|
||||
|
||||
if (!command->validatePeerMemory()) {
|
||||
delete command;
|
||||
return hipErrorInvalidValue;
|
||||
}
|
||||
|
||||
hipError_t status = hipSuccess;
|
||||
command->enqueue();
|
||||
if (!isAsync) {
|
||||
@@ -1160,6 +1165,11 @@ hipError_t ihipMemcpyDtoH(void* srcDevice,
|
||||
return hipErrorOutOfMemory;
|
||||
}
|
||||
|
||||
if (!command->validatePeerMemory()) {
|
||||
delete command;
|
||||
return hipErrorInvalidValue;
|
||||
}
|
||||
|
||||
hipError_t status = hipSuccess;
|
||||
command->enqueue();
|
||||
if (!isAsync) {
|
||||
@@ -1222,6 +1232,11 @@ hipError_t ihipMemcpyHtoD(const void* srcHost,
|
||||
return hipErrorOutOfMemory;
|
||||
}
|
||||
|
||||
if (!command->validatePeerMemory()) {
|
||||
delete command;
|
||||
return hipErrorInvalidValue;
|
||||
}
|
||||
|
||||
hipError_t status = hipSuccess;
|
||||
command->enqueue();
|
||||
if (!isAsync) {
|
||||
|
||||
Reference in New Issue
Block a user