hipmemcpy2D handle height 0

Change-Id: I46bf89e81559c3bfccac0dd0ccd78eee9058c7e3
このコミットが含まれているのは:
agodavar
2020-12-31 01:41:06 -05:00
コミット d21cabd890
+1 -1
ファイルの表示
@@ -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;
}