Fix hipMemset stream resolution

[ROCm/clr commit: 88073a17c1]
This commit is contained in:
Rahul Garg
2018-04-11 19:01:53 +05:30
rodzic a3bc29976b
commit aff8d83cdf
@@ -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();