Skip to content

Commit ca33f7f

Browse files
authored
[SYCL][DOC] Fix path to FPGA device selector (#2563)
The documentation for the FPGA Selector points now to the uppercase INTEL directory instead of lowercase.
1 parent baed6a5 commit ca33f7f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# FPGA selector
22

3-
Intel FPGA users can use header file: `#include<CL/sycl/intel/fpga_device_selector.hpp>` to simplify their code
3+
Intel FPGA users can use header file: `#include<CL/sycl/INTEL/fpga_device_selector.hpp>` to simplify their code
44
when they want to specify FPGA hardware device or FPGA emulation device.
55

66
## Implementation
@@ -10,18 +10,18 @@ one FPGA board installed in their system (one device per platform).
1010

1111
## Usage: select FPGA hardware device
1212
```c++
13-
#include <CL/sycl/intel/fpga_device_selector.hpp>
13+
#include <CL/sycl/INTEL/fpga_device_selector.hpp>
1414
...
1515
// force FPGA hardware device
16-
cl::sycl::queue deviceQueue{cl::sycl::intel::fpga_selector{}};
16+
cl::sycl::queue deviceQueue{cl::sycl::INTEL::fpga_selector{}};
1717
...
1818
```
1919
2020
## Usage: select FPGA emulator device
2121
```c++
22-
#include <CL/sycl/intel/fpga_device_selector.hpp>
22+
#include <CL/sycl/INTEL/fpga_device_selector.hpp>
2323
...
2424
// force FPGA emulation device
25-
cl::sycl::queue deviceQueue{cl::sycl::intel::fpga_emulator_selector{}};
25+
cl::sycl::queue deviceQueue{cl::sycl::INTEL::fpga_emulator_selector{}};
2626
...
2727
```

0 commit comments

Comments
 (0)