From 56e7c8b3a02cfee5b270fafbc63101638d402385 Mon Sep 17 00:00:00 2001 From: Tao Sang Date: Tue, 11 Oct 2022 11:22:46 -0400 Subject: [PATCH] SWDEV-318349 - Remove sync for null stream Remove sync for null stream in hipGraphExec::Run() Change-Id: Ieaaed1c15b4d258193d8341d4b17d9f03a9e4783 --- hipamd/src/hip_graph_internal.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/hipamd/src/hip_graph_internal.cpp b/hipamd/src/hip_graph_internal.cpp index 1a5d4f07d0..8c48a19858 100644 --- a/hipamd/src/hip_graph_internal.cpp +++ b/hipamd/src/hip_graph_internal.cpp @@ -817,7 +817,6 @@ hipError_t hipGraphExec::Run(hipStream_t stream) { endCommand->enqueue(); endCommand->release(); } - if (stream == nullptr) queue->finish(); ResetQueueIndex(); return status; }