From a079847536c53fd01376bfe2f7e83c3e5e69259d Mon Sep 17 00:00:00 2001 From: Ben Sander Date: Tue, 3 May 2016 08:33:35 -0500 Subject: [PATCH] comment change [ROCm/clr commit: 07b5785da23439e7f5d137bfa0a16a784420bca2] --- projects/clr/hipamd/src/hip_event.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/projects/clr/hipamd/src/hip_event.cpp b/projects/clr/hipamd/src/hip_event.cpp index f3c28e176e..31caf84780 100644 --- a/projects/clr/hipamd/src/hip_event.cpp +++ b/projects/clr/hipamd/src/hip_event.cpp @@ -77,8 +77,7 @@ hipError_t hipEventRecord(hipEvent_t event, hipStream_t stream) if (stream == NULL) { // If stream == NULL, wait on all queues. - // This matches behavior described in CUDA 7 RT APIs, which say that "This function uses standard default stream semantics". - // TODO-HCC fix this - is CUDA this conservative or still uses device timestamps? + // TODO-HCC fix this - is this conservative or still uses device timestamps? // TODO-HCC can we use barrier or event marker to implement better solution? ihipDevice_t *device = ihipGetTlsDefaultDevice(); device->locked_syncDefaultStream(true);