From 197223a6c2667ed8786dca941692c134e90ecca1 Mon Sep 17 00:00:00 2001 From: Ruyman Date: Tue, 29 Sep 2020 16:02:12 +0100 Subject: [PATCH] [SYCL][DOC] Fix path to FPGA device selector The documentation for the FPGA Selector points now to the uppercase INTEL directory instead of lowercase. --- sycl/doc/extensions/IntelFPGA/FPGASelector.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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{}}; ... ```