From b47c7dc8aa131c9174a6337dec5503e7156b698d Mon Sep 17 00:00:00 2001 From: Ben Sander Date: Fri, 2 Sep 2016 17:50:31 -0500 Subject: [PATCH] remove printf Change-Id: I36510a7ff0425f05a6d0b9c65cda4397c9cc2d95 [ROCm/clr commit: 3c90766c709a7b049c2a78fb433cbc169797a55a] --- projects/clr/hipamd/src/hip_stream.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/projects/clr/hipamd/src/hip_stream.cpp b/projects/clr/hipamd/src/hip_stream.cpp index e044b6b578..b5d7d8cf5b 100644 --- a/projects/clr/hipamd/src/hip_stream.cpp +++ b/projects/clr/hipamd/src/hip_stream.cpp @@ -66,7 +66,7 @@ hipError_t hipStreamCreateWithFlags(hipStream_t *stream, unsigned int flags) } //--- -hipError_t hipStreamCreate(hipStream_t *stream) +hipError_t hipStreamCreate(hipStream_t *stream) { HIP_INIT_API(stream); @@ -95,7 +95,6 @@ hipError_t hipStreamWaitEvent(hipStream_t stream, hipEvent_t event, unsigned int #if USE_AV_COPY if (stream != hipStreamNull) { - printf ("HIP: wait locked stream\n"); stream->locked_waitEvent(event); fastWait = true; // don't use the slow host-side synchronization.