- Bug fix for peer visibility.  Now contexts correctly detect when they can use SDMA for P2P vs staging buffers.
- Interface to new HCC copy_ext function.
- Improve context and peer print /debug options.
- Add comments and usage to hipPeerToPeer_simple test.
Этот коммит содержится в:
Ben Sander
2016-09-22 10:39:17 -05:00
родитель a397e60ba9
Коммит 944d4eaa18
4 изменённых файлов: 126 добавлений и 12 удалений
+1 -1
Просмотреть файл
@@ -104,7 +104,7 @@ hipError_t hipMalloc(void** ptr, size_t sizeBytes)
if (sizeBytes == 0)
{
*ptr = NULL;
return ihipLogStatus(hip_status);
return ihipLogStatus(hipSuccess);
}
auto ctx = ihipGetTlsDefaultCtx();