From 8c60a09b6f20e4a0907d6197a83788b546f02a88 Mon Sep 17 00:00:00 2001 From: Sergey Semenov Date: Mon, 23 Dec 2019 19:59:36 +0300 Subject: [PATCH] [SYCL] Print the execution graph as a multigraph Execution graph .dot dump specified the graph as strict, but a command can have multiple dependencies on another command. Signed-off-by: Sergey Semenov --- sycl/source/detail/scheduler/graph_builder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/source/detail/scheduler/graph_builder.cpp b/sycl/source/detail/scheduler/graph_builder.cpp index b150f6652f544..a0af8ff2d4c0b 100644 --- a/sycl/source/detail/scheduler/graph_builder.cpp +++ b/sycl/source/detail/scheduler/graph_builder.cpp @@ -93,7 +93,7 @@ void Scheduler::GraphBuilder::printGraphAsDot(const char *ModeName) { Counter++; std::fstream Stream(FileName, std::ios::out); - Stream << "strict digraph {" << std::endl; + Stream << "digraph {" << std::endl; std::set Visited;