Learn how to do reduction operations in oneAPI using SYCL or oneDPL and learn the advantages of each approach.
Reduction is a common parallel pattern that reduces several values to a single value. For example, a summation reduction adds the values in an array to get a single sum. Finding the minimum or maximum value in an array, or the locations of those values, are also reduction operations.
SYCL provides a built-in reduction operator that can be used in parallel kernels. And the Intel® oneAPI DPC++ Library (oneDPL) provides functions for reduction operations.
There are valid reasons for using one or the other approach.
This webinar will: