File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
include/sycl/ext/oneapi/experimental/graph Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -210,6 +210,13 @@ class __SYCL_EXPORT modifiable_command_graph
210
210
static void checkNodePropertiesAndThrow (const property_list &Properties);
211
211
};
212
212
213
+ #ifndef ___INTEL_PREVIEW_BREAKING_CHANGES
214
+ inline void modifiable_command_graph::print_graph (const std::string path,
215
+ bool verbose) const {
216
+ print_graph (sycl::detail::string_view{path}, verbose);
217
+ }
218
+ #endif
219
+
213
220
} // namespace detail
214
221
} // namespace experimental
215
222
} // namespace oneapi
Original file line number Diff line number Diff line change @@ -2101,13 +2101,6 @@ void modifiable_command_graph::checkNodePropertiesAndThrow(
2101
2101
Properties, CheckDataLessProperties, CheckPropertiesWithData);
2102
2102
}
2103
2103
2104
- #ifndef ___INTEL_PREVIEW_BREAKING_CHANGES
2105
- void modifiable_command_graph::print_graph (const std::string path,
2106
- bool verbose) const {
2107
- print_graph (sycl::detail::string_view{path}, verbose);
2108
- }
2109
- #endif
2110
-
2111
2104
executable_command_graph::executable_command_graph (
2112
2105
const std::shared_ptr<detail::graph_impl> &Graph, const sycl::context &Ctx,
2113
2106
const property_list &PropList)
You can’t perform that action at this time.
0 commit comments