File tree Expand file tree Collapse file tree 3 files changed +4
-9
lines changed Expand file tree Collapse file tree 3 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -40,10 +40,6 @@ enum class memory_order;
4040namespace detail {
4141class buffer_impl ;
4242
43- #ifndef __INTEL_PREVIEW_BREAKING_CHANGES
44- __SYCL_EXPORT void waitEvents (std::vector<sycl::event> DepEvents);
45- #endif
46-
4743__SYCL_EXPORT void
4844markBufferAsInternal (const std::shared_ptr<buffer_impl> &BufImpl);
4945
Original file line number Diff line number Diff line change 2525namespace sycl {
2626inline namespace _V1 {
2727namespace detail {
28- void waitEvents (std::vector<sycl::event> DepEvents) {
28+ #ifndef __INTEL_PREVIEW_BREAKING_CHANGES
29+ // Unused, only keeping for ABI compatibility reasons.
30+ __SYCL_EXPORT void waitEvents (std::vector<sycl::event> DepEvents) {
2931 for (auto SyclEvent : DepEvents) {
3032 detail::getSyclObjImpl (SyclEvent)->waitInternal ();
3133 }
3234}
35+ #endif
3336
3437__SYCL_EXPORT void
3538markBufferAsInternal (const std::shared_ptr<buffer_impl> &BufImpl) {
Original file line number Diff line number Diff line change @@ -23,10 +23,6 @@ class CGExecKernel;
2323class queue_impl ;
2424class RTDeviceBinaryImage ;
2525
26- #ifdef __INTEL_PREVIEW_BREAKING_CHANGES
27- void waitEvents (std::vector<sycl::event> DepEvents);
28- #endif
29-
3026std::tuple<const RTDeviceBinaryImage *, ur_program_handle_t >
3127retrieveKernelBinary (queue_impl &Queue, KernelNameStrRefT KernelName,
3228 CGExecKernel *CGKernel = nullptr );
You can’t perform that action at this time.
0 commit comments