Skip to content

Commit ee93fbc

Browse files
[SYCL] Move SYCL headers from CL/ to sycl/ (#6407)
`CL/sycl.hpp` is changed to include `sycl/sycl.hpp`. No deprecation warning emitted as the header is required by the SYCL 2020 for backward compatibility.
1 parent 261290b commit ee93fbc

File tree

626 files changed

+1788
-1767
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

626 files changed

+1788
-1767
lines changed

clang/docs/SYCLSupport.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ This is also in line with the behaviour of CUDA (`small example
7272
template <typename T, address_space AS> class multi_ptr {
7373
// DecoratedType applies corresponding address space attribute to the type T
7474
// DecoratedType<T, global_space>::type == "__attribute__((opencl_global)) T"
75-
// See sycl/include/CL/sycl/access/access.hpp for more details
75+
// See sycl/include/sycl/access/access.hpp for more details
7676
using pointer_t = typename DecoratedType<T, AS>::type *;
7777
7878
pointer_t m_Pointer;

clang/lib/Sema/SemaSYCL.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4585,8 +4585,8 @@ void SYCLIntegrationHeader::emit(raw_ostream &O) {
45854585
O << "// This is auto-generated SYCL integration header.\n";
45864586
O << "\n";
45874587

4588-
O << "#include <CL/sycl/detail/defines_elementary.hpp>\n";
4589-
O << "#include <CL/sycl/detail/kernel_desc.hpp>\n";
4588+
O << "#include <sycl/detail/defines_elementary.hpp>\n";
4589+
O << "#include <sycl/detail/kernel_desc.hpp>\n";
45904590

45914591
O << "\n";
45924592

@@ -5055,7 +5055,7 @@ bool SYCLIntegrationFooter::emit(raw_ostream &OS) {
50555055
// We only want to emit the #includes if we have a variable that needs
50565056
// them, so emit this one on the first time through the loop.
50575057
if (!EmittedFirstSpecConstant && !DeviceGlobalsEmitted)
5058-
OS << "#include <CL/sycl/detail/defines_elementary.hpp>\n";
5058+
OS << "#include <sycl/detail/defines_elementary.hpp>\n";
50595059

50605060
Visited.insert(VD);
50615061
std::string TopShim = EmitShims(OS, ShimCounter, Policy, VD);
@@ -5101,10 +5101,10 @@ bool SYCLIntegrationFooter::emit(raw_ostream &OS) {
51015101
}
51025102

51035103
if (EmittedFirstSpecConstant)
5104-
OS << "#include <CL/sycl/detail/spec_const_integration.hpp>\n";
5104+
OS << "#include <sycl/detail/spec_const_integration.hpp>\n";
51055105

51065106
if (DeviceGlobalsEmitted) {
5107-
OS << "#include <CL/sycl/detail/device_global_map.hpp>\n";
5107+
OS << "#include <sycl/detail/device_global_map.hpp>\n";
51085108
DeviceGlobOS.flush();
51095109
OS << "namespace sycl::detail {\n";
51105110
OS << "namespace {\n";

clang/test/CodeGenSYCL/anonymous_integration_footer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ int main() {
99
cl::sycl::kernel_single_task<class first_kernel>([]() {});
1010
}
1111

12-
// CHECK: #include <CL/sycl/detail/defines_elementary.hpp>
12+
// CHECK: #include <sycl/detail/defines_elementary.hpp>
1313

1414
using namespace cl;
1515

@@ -402,4 +402,4 @@ constexpr sycl::specialization_id same_name{17};
402402
}
403403
} // namespace outer
404404

405-
// CHECK: #include <CL/sycl/detail/spec_const_integration.hpp>
405+
// CHECK: #include <sycl/detail/spec_const_integration.hpp>

clang/test/CodeGenSYCL/anonymous_integration_footer2.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ int main() {
99
cl::sycl::kernel_single_task<class first_kernel>([]() {});
1010
}
1111

12-
// CHECK: #include <CL/sycl/detail/defines_elementary.hpp>
12+
// CHECK: #include <sycl/detail/defines_elementary.hpp>
1313

1414
using namespace cl;
1515

@@ -155,4 +155,4 @@ constexpr sycl::specialization_id same_name{209};
155155
}
156156
}
157157

158-
// CHECK: #include <CL/sycl/detail/spec_const_integration.hpp>
158+
// CHECK: #include <sycl/detail/spec_const_integration.hpp>

clang/test/CodeGenSYCL/device_global_int_footer_header.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ int main() {
2727
// CHECK-HEADER: } // namespace sycl
2828
// CHECK-HEADER: } // __SYCL_INLINE_NAMESPACE(cl)
2929

30-
// CHECK-FOOTER: #include <CL/sycl/detail/defines_elementary.hpp>
30+
// CHECK-FOOTER: #include <sycl/detail/defines_elementary.hpp>
3131

3232
// Shims go before the registration.
3333
// CHECK-FOOTER: namespace Foo {
@@ -47,7 +47,7 @@ int main() {
4747
// CHECK-FOOTER-NEXT: } // namespace __sycl_detail
4848
// CHECK-FOOTER-NEXT: } // namespace
4949

50-
// CHECK-FOOTER: #include <CL/sycl/detail/device_global_map.hpp>
50+
// CHECK-FOOTER: #include <sycl/detail/device_global_map.hpp>
5151
// CHECK-FOOTER: namespace sycl::detail {
5252
// CHECK-FOOTER-NEXT: namespace {
5353
// CHECK-FOOTER-NEXT: __sycl_device_global_registration::__sycl_device_global_registration() noexcept {

clang/test/CodeGenSYCL/device_globals_with_spec_ids.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ int main() {
1111
cl::sycl::kernel_single_task<class first_kernel>([]() {});
1212
}
1313

14-
// CHECK: #include <CL/sycl/detail/defines_elementary.hpp>
14+
// CHECK: #include <sycl/detail/defines_elementary.hpp>
1515
constexpr sycl::specialization_id a{2};
1616
// CHECK-NEXT: __SYCL_INLINE_NAMESPACE(cl) {
1717
// CHECK-NEXT: namespace sycl {
@@ -247,8 +247,8 @@ struct Wrapper {
247247
} // namespace
248248
} // namespace outer
249249

250-
// CHECK: #include <CL/sycl/detail/spec_const_integration.hpp>
251-
// CHECK-NEXT: #include <CL/sycl/detail/device_global_map.hpp>
250+
// CHECK: #include <sycl/detail/spec_const_integration.hpp>
251+
// CHECK-NEXT: #include <sycl/detail/device_global_map.hpp>
252252
// CHECK-NEXT: namespace sycl::detail {
253253
// CHECK-NEXT: namespace {
254254
// CHECK-NEXT: __sycl_device_global_registration::__sycl_device_global_registration() noexcept {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// RUN: %clang_cc1 -fsycl-is-device -triple spir64-unknown-unknown -fsycl-int-footer=%t.h %s -emit-llvm -o %t.ll
22
// RUN: FileCheck -input-file=%t.h %s --allow-empty
33

4-
// CHECK-NOT: #include <CL/sycl/detail/defines_elementary.hpp>
5-
// CHECK-NOT: #include <CL/sycl/detail/spec_const_integration.hpp>
4+
// CHECK-NOT: #include <sycl/detail/defines_elementary.hpp>
5+
// CHECK-NOT: #include <sycl/detail/spec_const_integration.hpp>

clang/test/CodeGenSYCL/int_header_without_kernels.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ using namespace cl::sycl::ext::oneapi;
2323
// CHECK-HEADER: } // namespace sycl
2424
// CHECK-HEADER: } // __SYCL_INLINE_NAMESPACE(cl)
2525

26-
// CHECK-FOOTER: #include <CL/sycl/detail/defines_elementary.hpp>
26+
// CHECK-FOOTER: #include <sycl/detail/defines_elementary.hpp>
2727

28-
// CHECK-FOOTER: #include <CL/sycl/detail/device_global_map.hpp>
28+
// CHECK-FOOTER: #include <sycl/detail/device_global_map.hpp>
2929
// CHECK-FOOTER: namespace sycl::detail {
3030
// CHECK-FOOTER-NEXT: namespace {
3131
// CHECK-FOOTER-NEXT: __sycl_device_global_registration::__sycl_device_global_registration() noexcept {

clang/test/CodeGenSYCL/integration_footer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ int main() {
77
cl::sycl::kernel_single_task<class first_kernel>([]() {});
88
}
99

10-
// CHECK: #include <CL/sycl/detail/defines_elementary.hpp>
10+
// CHECK: #include <sycl/detail/defines_elementary.hpp>
1111

1212
using namespace cl::sycl;
1313

@@ -200,4 +200,4 @@ auto &y = GlobalWrapper<int>::template sc<20>;
200200
// CHECK-NOT: inline const char *get_spec_constant_symbolic_ID_impl<::GlobalWrapper<int>::sc>()
201201
// CHECK: inline const char *get_spec_constant_symbolic_ID_impl<::GlobalWrapper<int>::sc<20>>()
202202

203-
// CHECK: #include <CL/sycl/detail/spec_const_integration.hpp>
203+
// CHECK: #include <sycl/detail/spec_const_integration.hpp>

clang/test/CodeGenSYCL/integration_header.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %clang_cc1 -fsycl-is-device -triple spir64-unknown-unknown -sycl-std=2020 -fsycl-int-header=%t.h %s -emit-llvm -o %t.ll
22
// RUN: FileCheck -input-file=%t.h %s
33
//
4-
// CHECK: #include <CL/sycl/detail/kernel_desc.hpp>
4+
// CHECK: #include <sycl/detail/kernel_desc.hpp>
55
//
66
// CHECK: class first_kernel;
77
// CHECK-NEXT: namespace second_namespace {

clang/test/CodeGenSYCL/kernel-param-acc-array-ih.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// This test checks the integration header generated when
55
// the kernel argument is an Accessor array.
66

7-
// CHECK: #include <CL/sycl/detail/kernel_desc.hpp>
7+
// CHECK: #include <sycl/detail/kernel_desc.hpp>
88

99
// CHECK: class kernel_A;
1010

clang/test/CodeGenSYCL/kernel-param-member-acc-array-ih.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// This test checks the integration header when kernel argument
55
// is a struct containing an Accessor array.
66

7-
// CHECK: #include <CL/sycl/detail/kernel_desc.hpp>
7+
// CHECK: #include <sycl/detail/kernel_desc.hpp>
88

99
// CHECK: class kernel_C;
1010

clang/test/CodeGenSYCL/kernel-param-pod-array-ih.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This test checks the integration header generated for a kernel
44
// with an argument that is a POD array.
55

6-
// CHECK: #include <CL/sycl/detail/kernel_desc.hpp>
6+
// CHECK: #include <sycl/detail/kernel_desc.hpp>
77

88
// CHECK: class kernel_B;
99

clang/test/CodeGenSYCL/union-kernel-param-ih.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// This test checks the integration header generated when
55
// the kernel argument is union.
66

7-
// CHECK: #include <CL/sycl/detail/kernel_desc.hpp>
7+
// CHECK: #include <sycl/detail/kernel_desc.hpp>
88

99
// CHECK: class kernel_A;
1010

clang/test/CodeGenSYCL/wrapped-accessor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %clang_cc1 -fsycl-is-device -triple spir64-unknown-unknown -fsycl-int-header=%t.h %s -o %t.out
22
// RUN: FileCheck -input-file=%t.h %s
33
//
4-
// CHECK: #include <CL/sycl/detail/kernel_desc.hpp>
4+
// CHECK: #include <sycl/detail/kernel_desc.hpp>
55

66
// CHECK: class wrapped_access;
77

clang/test/SemaSYCL/Inputs/CL/sycl/detail/kernel_desc.hpp renamed to clang/test/SemaSYCL/Inputs/sycl/detail/kernel_desc.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
#include <CL/sycl/detail/defines_elementary.hpp>
3+
#include <sycl/detail/defines_elementary.hpp>
44

55
__SYCL_INLINE_NAMESPACE(cl) {
66
namespace sycl {

libdevice/include/assert-happened.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#ifdef __SPIR__
1414

1515
// NOTE Layout of this structure should be aligned with the one in
16-
// sycl/include/CL/sycl/detail/assert_happened.hpp
16+
// sycl/include/sycl/detail/assert_happened.hpp
1717
struct AssertHappened {
1818
int Flag = 0;
1919
char Expr[256 + 1] = "";

llvm/test/SYCLLowerIR/printf_addrspace/Inputs/experimental-printf-bad-inline-test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <CL/sycl.hpp>
1+
#include <sycl/sycl.hpp>
22

33
SYCL_EXTERNAL void custom_wrapper(const char *S) {
44
sycl::ext::oneapi::experimental::printf(S);

llvm/test/SYCLLowerIR/printf_addrspace/Inputs/experimental-printf-compile-time-unknown.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <CL/sycl.hpp>
1+
#include <sycl/sycl.hpp>
22

33
using namespace sycl;
44

llvm/test/SYCLLowerIR/printf_addrspace/Inputs/experimental-printf.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <CL/sycl.hpp>
1+
#include <sycl/sycl.hpp>
22

33
using namespace sycl;
44

sycl/.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
include/CL/sycl/version.hpp
2-
include/CL/sycl/feature_test.hpp
1+
include/sycl/version.hpp
2+
include/sycl/feature_test.hpp

sycl/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@ set(sycl_inc_dir ${CMAKE_CURRENT_SOURCE_DIR}/include)
154154
set(sycl_src_dir ${CMAKE_CURRENT_SOURCE_DIR}/source)
155155
set(sycl_plugin_dir ${CMAKE_CURRENT_SOURCE_DIR}/plugins)
156156
string(TIMESTAMP __SYCL_COMPILER_VERSION "%Y%m%d")
157-
set(version_header "${sycl_inc_dir}/CL/sycl/version.hpp")
157+
set(version_header "${sycl_inc_dir}/sycl/version.hpp")
158158
configure_file("${version_header}.in" "${version_header}")
159-
set(feature_header "${sycl_inc_dir}/CL/sycl/feature_test.hpp")
159+
set(feature_header "${sycl_inc_dir}/sycl/feature_test.hpp")
160160
configure_file("${feature_header}.in" "${feature_header}")
161161

162162
include(AddBoostMp11Headers)

sycl/doc/FAQ.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ library is listed in the correct environment variable: `LD_LIBRARY_PATH`
9494
Example error message:
9595
```
9696
In file included from example.cpp:1:
97-
In file included from C:\compiler\lib\clang\10.0.0\include\CL/sycl.hpp:11:
98-
In file included from C:\compiler\lib\clang\10.0.0\include\CL/sycl/accessor.hpp:13:
99-
In file included from C:\compiler\lib\clang\10.0.0\include\CL/sycl/buffer.hpp:10:
100-
In file included from C:\compiler\lib\clang\10.0.0\include\CL/sycl/detail/buffer_impl.hpp:14:
101-
In file included from C:\compiler\lib\clang\10.0.0\include\CL/sycl/detail/aligned_allocator.hpp:16:
97+
In file included from C:\compiler\lib\clang\10.0.0\include\sycl/sycl.hpp:11:
98+
In file included from C:\compiler\lib\clang\10.0.0\include\sycl/accessor.hpp:13:
99+
In file included from C:\compiler\lib\clang\10.0.0\include\sycl/buffer.hpp:10:
100+
In file included from C:\compiler\lib\clang\10.0.0\include\sycl/detail/buffer_impl.hpp:14:
101+
In file included from C:\compiler\lib\clang\10.0.0\include\sycl/detail/aligned_allocator.hpp:16:
102102
C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.22.27905\include\algorithm(4493,9): error: SYCL kernel cannot call a
103103
dllimport function
104104
_STL_ASSERT(!(_Left < _Right), "invalid comparator");

sycl/doc/GetStartedGuide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ A simple DPC++ or SYCL\* program consists of following parts:
563563
Creating a file `simple-sycl-app.cpp` with the following C++/SYCL code:
564564
565565
```c++
566-
#include <CL/sycl.hpp>
566+
#include <sycl/sycl.hpp>
567567
568568
int main() {
569569
// Creating buffer of 4 ints to be used inside the kernel code
@@ -737,7 +737,7 @@ The example below illustrates how to use `cl::sycl::device_selector` to create
737737
device and queue objects bound to Intel GPU device:
738738
739739
```c++
740-
#include <CL/sycl.hpp>
740+
#include <sycl/sycl.hpp>
741741
742742
int main() {
743743
class NEOGPUDeviceSelector : public cl::sycl::device_selector {

sycl/doc/design/Assert.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ device binary image descriptor's property sets.
234234

235235
Each device image is supplied with an array of property sets. For description
236236
of property sets see `struct pi_device_binary_struct` in
237-
[`pi.h`](https://github.com/intel/llvm/blob/sycl/sycl/include/CL/sycl/detail/pi.h#L692)
237+
[`pi.h`](https://github.com/intel/llvm/blob/sycl/sycl/include/sycl/detail/pi.h#L692)
238238

239239
A distinct property set `SYCL/assert used` is added. In this set a property
240240
with the name of the kernel is added whenever the kernel uses assert. The use of

sycl/doc/design/CompilerAndRuntimeDesign.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ For instance:
855855
template <typename T, address_space AS> class multi_ptr {
856856
// DecoratedType applies corresponding address space attribute to the type T
857857
// DecoratedType<T, global_space>::type == "__attribute__((opencl_global)) T"
858-
// See sycl/include/CL/sycl/access/access.hpp for more details
858+
// See sycl/include/sycl/access/access.hpp for more details
859859
using pointer_t = typename DecoratedType<T, AS>::type *;
860860
861861
pointer_t m_Pointer;

sycl/doc/design/GlobalObjectsInRuntime.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ At the same time, SYCL users may want to construct some SYCL objects globally,
1717
like in example below:
1818

1919
```
20-
#include <CL/sycl.hpp>
20+
#include <sycl/sycl.hpp>
2121
2222
sycl::queue Queue;
2323

sycl/doc/design/KernelProgramCache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ following is done:
284284
All fields are atomic because they can be accessed from multiple threads.
285285

286286
A specialization of helper class
287-
[Locked](https://github.com/intel/llvm/blob/sycl/sycl/include/CL/sycl/detail/locked.hpp)
287+
[Locked](https://github.com/intel/llvm/blob/sycl/sycl/include/sycl/detail/locked.hpp)
288288
for reference of proper mapping is returned by Acquire function. The use of this
289289
class implements RAII to make code look cleaner a bit. Now, GetCache function
290290
will return the mapping to be employed that includes the 3 components: kernel

sycl/doc/design/PluginInterface.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ SYCL_PI_TRACE=-1 lists all PI Traces above and more debug messages.
7272

7373
#### Plugin binary interface
7474
Plugins should implement all the Interface APIs required for the PI Version
75-
it supports. There is [pi.def](../../include/CL/sycl/detail/pi.def)/
76-
[pi.h](../../include/CL/sycl/detail/pi.h) file listing all PI API names that
75+
it supports. There is [pi.def](../../include/sycl/detail/pi.def)/
76+
[pi.h](../../include/sycl/detail/pi.h) file listing all PI API names that
7777
can be called by the specific version of Plugin Interface.
7878
It exports a function - "piPluginInit" that returns the plugin details and
7979
function pointer table containing the list of pointers to implemented Interface
@@ -149,7 +149,7 @@ into
149149
- **Interoperability API** which allows interoperability with underlying
150150
runtimes such as OpenCL.
151151

152-
See [pi.h](../../include/CL/sycl/detail/pi.h) header for the full list and
152+
See [pi.h](../../include/sycl/detail/pi.h) header for the full list and
153153
descriptions of PI APIs.
154154

155155
### The Core OpenCL-based PI APIs

sycl/doc/design/SYCL2020-SpecializationConstants.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ inline const char *get_spec_constant_symbolic_ID<id_float>() {
818818
} // __SYCL_INLINE_NAMESPACE(cl)
819819
820820
// Detailed description of this header is provided below in corresponding RT section
821-
#include <CL/sycl/detail/spec_const_integration.hpp>
821+
#include <sycl/detail/spec_const_integration.hpp>
822822
```
823823

824824
Note that `get_spec_constant_symbolic_ID` specialization are generated for each
@@ -915,7 +915,7 @@ namespace sycl {
915915
}
916916
}
917917
918-
#include <CL/sycl/detail/spec_const_integration.hpp>
918+
#include <sycl/detail/spec_const_integration.hpp>
919919
```
920920

921921
### DPC++ runtime

sycl/doc/design/SYCLInstrumentationUsingXPTI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ plugin interface (PI) layer `initialize()` call. In this call, we will
7878
perform two operations:
7979

8080
1. Initialize all listeners and create a trace event to represent the graph.
81-
This is done in `sycl/include/CL/sycl/detail/pi.cpp`.
81+
This is done in `sycl/include/sycl/detail/pi.cpp`.
8282
2. Send a `graph_create` event to all subscribers. This notification
8383
will only be sent once.
8484

sycl/doc/developer/ABIPolicyGuide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,4 +129,4 @@ At the end of this window we will increment major version of the DPC++ library
129129
1. If there is a need to add a new field in `sycl::handler` or/and
130130
`sycl::detail::CG` classes it can be done without breaking ABI using the
131131
approach described in the comment at the beggining of
132-
[cg.hpp](../../include/CL/sycl/detail/cg.hpp)
132+
[cg.hpp](../../include/sycl/detail/cg.hpp)

0 commit comments

Comments
 (0)