Fix hipMemset stream resolution

This commit is contained in:
Rahul Garg
2018-04-11 19:01:53 +05:30
parent 40846f6f8e
commit 88073a17c1
+1
View File
@@ -1619,6 +1619,7 @@ hipError_t hipMemset(void* dst, int value, size_t sizeBytes) {
hipError_t e = hipSuccess;
hipStream_t stream = hipStreamNull;
stream = ihipSyncAndResolveStream(stream);
if (stream) {
e = ihipMemset(dst, value, sizeBytes, stream, ihipMemsetCopyDataTypeChar);
stream->locked_wait();