This repository accompanies Data Parallel C++: Mastering DPC++ for Programming of Heterogeneous Systems using C++ and SYCL by James Reinders, Ben Ashbaugh, James Brodman, Michael Kinsner, John Pennycook, Xinmin Tian (Apress, 2020).
Many of the samples in the book are snips from the more complete files in this repository. The full files contain supporting code, such as header inclusions, which are not shown in every listing within the book. The complete listings are intended to compile and be modifiable for experimentation.
⚠️ Samples in this repository are updated to align with the most recent changes to the language and toolchains, and are more current than captured in the book text due to lag between finalization and actual publication of a print book. If experimenting with the code samples, start with the versions in this repository. DPC++ and SYCL are evolving to be more powerful and easier to use, and updates to the sample code in this repository are a good sign of forward progress!
Download the files as a zip using the green button, or clone the repository to your machine using Git.
⚠️ The samples in this repository are intended to compile with the open source project toolchain linked below, or with the Beta 10 release or newer of the DPC++ toolchain. If you have an older toolchain installed, you may encounter compilation errors due to evolution of the features and extensions.
To build and use these examples, you will need an installed DPC++ toolchain. For one such toolchain, please visit:
https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/dpc-compiler.html
Alternatively, much of the toolchain can be built directly from:
Some of the Chapter 18 examples require an installation of oneDPL, which is available from:
https://github.com/oneapi-src/oneDPL
To build the samples:
-
Setup oneAPI environment variables:
On Windows:
\path\to\inteloneapi\setvars.bat
On Linux:
source /path/to/inteloneapi/setvars.sh
-
Create build files using CMake, specifying the DPC++ toolchain. For example:
mkdir build && cd build cmake -G Ninja -DCMAKE_TOOLCHAIN_FILE=../dpcpp_toolchain.cmake ..
NOTE: If you do not have Ninja installed, you can use another Makefile generator such as 'Unix Makefiles'.
NOTE: If you do not have oneDPL installed, you can disable compilation of those tests with the option
NODPL
cmake -G Ninja -DNODPL=1 -DCMAKE_TOOLCHAIN_FILE=../dpcpp_toolchain.cmake ..
-
Build with the generated build files:
ninja install