Skip to content

Commit 6b5b97d

Browse files
Removed graph_* files
1 parent 50c3a3b commit 6b5b97d

19 files changed

+24
-1953
lines changed

sycl/source/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,8 @@ set(SYCL_COMMON_SOURCES
277277
"detail/fusion/fusion_wrapper.cpp"
278278
"detail/global_handler.cpp"
279279
"detail/graph/graph_impl.cpp"
280-
"detail/graph/graph_dynamic_impl.cpp"
281-
"detail/graph/graph_node_impl.cpp"
280+
"detail/graph/dynamic_impl.cpp"
281+
"detail/graph/node_impl.cpp"
282282
"detail/helpers.cpp"
283283
"detail/handler_proxy.cpp"
284284
"detail/image_accessor_util.cpp"
@@ -337,7 +337,7 @@ set(SYCL_COMMON_SOURCES
337337
"detail/memory_pool_impl.cpp"
338338
"detail/async_alloc.cpp"
339339
"detail/memory_pool.cpp"
340-
"detail/graph/graph_memory_pool.cpp"
340+
"detail/graph/memory_pool.cpp"
341341
"$<$<PLATFORM_ID:Windows>:detail/windows_ur.cpp>"
342342
"$<$<OR:$<PLATFORM_ID:Linux>,$<PLATFORM_ID:Darwin>>:detail/posix_ur.cpp>"
343343
)

sycl/source/detail/async_alloc.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <detail/context_impl.hpp>
1111
#include <detail/event_impl.hpp>
1212
#include <detail/graph/graph_impl.hpp>
13-
#include <detail/graph/graph_node_impl.hpp>
13+
#include <detail/graph/node_impl.hpp>
1414
#include <detail/queue_impl.hpp>
1515
#include <sycl/detail/ur.hpp>
1616
#include <sycl/ext/oneapi/experimental/async_alloc/async_alloc.hpp>
@@ -188,7 +188,8 @@ __SYCL_EXPORT void async_free(sycl::handler &h, void *ptr) {
188188

189189
__SYCL_EXPORT void async_free(const sycl::queue &q, void *ptr,
190190
const sycl::detail::code_location &CodeLoc) {
191-
submit(q, [&](sycl::handler &h) { async_free(h, ptr); }, CodeLoc);
191+
submit(
192+
q, [&](sycl::handler &h) { async_free(h, ptr); }, CodeLoc);
192193
}
193194

194195
} // namespace ext::oneapi::experimental

sycl/source/detail/graph/dynamic_impl.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//==--------- graph_dynamic_impl.cpp - SYCL graph extension ----------------==//
1+
//==--------- dynamic_impl.cpp - SYCL graph extension ----------------------==//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.
@@ -8,8 +8,8 @@
88

99
#define __SYCL_GRAPH_DYNAMIC_PARAM_IMPL_CPP
1010

11-
#include "graph_dynamic_impl.hpp"
12-
#include "graph_node_impl.hpp" // for NodeShared
11+
#include "dynamic_impl.hpp"
12+
#include "node_impl.hpp" // for NodeShared
1313
#include <detail/cg.hpp> // for CG
1414
#include <detail/handler_impl.hpp> // for handler_impl
1515
#include <detail/sycl_mem_obj_t.hpp> // for SYCLMemObjT

sycl/source/detail/graph/dynamic_impl.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//==--------- graph_dynamic_impl.hpp - SYCL graph extension ----------------==//
1+
//==--------- dynamic_impl.hpp - SYCL graph extension ----------------------==//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

0 commit comments

Comments
 (0)