Skip to content

Commit 3f7a911

Browse files
Changed naming in includes and deleted unnecesary files
1 parent e3b7b6b commit 3f7a911

File tree

10 files changed

+17
-503
lines changed

10 files changed

+17
-503
lines changed

sycl/include/sycl/ext/oneapi/experimental/graph.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#pragma once
1010

1111
#include "graph/command_graph.hpp"
12+
#include "graph/dynamic.hpp"
1213
#include "graph/executable_graph.hpp"
13-
#include "graph/graph_dynamic.hpp"
14-
#include "graph/graph_node.hpp"
1514
#include "graph/modifiable_graph.hpp"
15+
#include "graph/node.hpp"

sycl/include/sycl/ext/oneapi/experimental/graph/dynamic.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//==--------- graph_dynamic.hpp --- SYCL graph extension -------------------==//
1+
//==--------- dynamic.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.
@@ -152,8 +152,8 @@ class __SYCL_EXPORT dynamic_local_accessor_base
152152
} // namespace detail
153153

154154
template <typename DataT, typename PropertyListT = empty_properties_t>
155-
class __SYCL_SPECIAL_CLASS
156-
__SYCL_TYPE(dynamic_work_group_memory) dynamic_work_group_memory
155+
class __SYCL_SPECIAL_CLASS __SYCL_TYPE(dynamic_work_group_memory)
156+
dynamic_work_group_memory
157157
#ifndef __SYCL_DEVICE_ONLY__
158158
: public detail::dynamic_work_group_memory_base
159159
#endif
@@ -240,8 +240,8 @@ __SYCL_TYPE(dynamic_work_group_memory) dynamic_work_group_memory
240240
};
241241

242242
template <typename DataT, int Dimensions = 1>
243-
class __SYCL_SPECIAL_CLASS
244-
__SYCL_TYPE(dynamic_local_accessor) dynamic_local_accessor
243+
class __SYCL_SPECIAL_CLASS __SYCL_TYPE(dynamic_local_accessor)
244+
dynamic_local_accessor
245245
#ifndef __SYCL_DEVICE_ONLY__
246246
: public detail::dynamic_local_accessor_base
247247
#endif

sycl/include/sycl/ext/oneapi/experimental/graph/executable_graph.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#include <sycl/detail/export.hpp> // for __SYCL_EXPORT
1212
#include <sycl/detail/owner_less_base.hpp> // for OwnerLessBase
1313
#include <sycl/ext/oneapi/experimental/detail/properties/graph_properties.hpp> // for graph_state
14-
#include <sycl/ext/oneapi/experimental/graph/graph_node.hpp> // for node class
15-
#include <sycl/property_list.hpp> // for property_list
14+
#include <sycl/ext/oneapi/experimental/graph/node.hpp> // for node class
15+
#include <sycl/property_list.hpp> // for property_list
1616

1717
#include <memory> // for shared_ptr
1818
#include <vector> // for vector

0 commit comments

Comments
 (0)