From 2bd29d0e654f3e610c2e513f75c76a561dd777e8 Mon Sep 17 00:00:00 2001 From: "Ptak, Slawomir" Date: Mon, 6 Oct 2025 16:37:21 +0000 Subject: [PATCH] [SYCL] Remove assertion for graph support for handler-less kernel submit --- sycl/source/detail/queue_impl.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/sycl/source/detail/queue_impl.cpp b/sycl/source/detail/queue_impl.cpp index 8243896cf76d..e635d7ba9a92 100644 --- a/sycl/source/detail/queue_impl.cpp +++ b/sycl/source/detail/queue_impl.cpp @@ -530,9 +530,6 @@ queue_impl::submit_direct(bool CallerNeedsEvent, detail::CG::StorageInitHelper CGData; std::unique_lock Lock(MMutex); - // Graphs are not supported yet for the no-handler path - assert(!hasCommandGraph()); - // Set the No Last Event Mode to false, since the no-handler path // does not support it yet. MNoLastEventMode.store(false, std::memory_order_relaxed);