hipmemcpy2D handle height 0

Change-Id: I46bf89e81559c3bfccac0dd0ccd78eee9058c7e3


[ROCm/clr commit: 7dcf2769ae]
This commit is contained in:
agodavar
2020-12-31 01:41:06 -05:00
rodzic 9de26a2274
commit ceb68b8d4f
@@ -1557,7 +1557,7 @@ hipError_t ihipMemcpy2D(void* dst, size_t dpitch, const void* src, size_t spitch
if (spitch == 0 || dpitch == 0) {
return hipErrorUnknown;
}
if (width == 0) {
if (width == 0 || height == 0) {
return hipSuccess;
}