diff --git a/sycl/doc/extensions/IntelFPGA/FPGASelector.md b/sycl/doc/extensions/IntelFPGA/FPGASelector.md index e5996fefa3311..bf6ee444d1707 100644 --- a/sycl/doc/extensions/IntelFPGA/FPGASelector.md +++ b/sycl/doc/extensions/IntelFPGA/FPGASelector.md @@ -1,6 +1,6 @@ # FPGA selector -Intel FPGA users can use header file: `#include` to simplify their code +Intel FPGA users can use header file: `#include` to simplify their code when they want to specify FPGA hardware device or FPGA emulation device. ## Implementation @@ -10,18 +10,18 @@ one FPGA board installed in their system (one device per platform). ## Usage: select FPGA hardware device ```c++ -#include +#include ... // force FPGA hardware device -cl::sycl::queue deviceQueue{cl::sycl::intel::fpga_selector{}}; +cl::sycl::queue deviceQueue{cl::sycl::INTEL::fpga_selector{}}; ... ``` ## Usage: select FPGA emulator device ```c++ -#include +#include ... // force FPGA emulation device -cl::sycl::queue deviceQueue{cl::sycl::intel::fpga_emulator_selector{}}; +cl::sycl::queue deviceQueue{cl::sycl::INTEL::fpga_emulator_selector{}}; ... ```