Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 1.49 KB

File metadata and controls

45 lines (28 loc) · 1.49 KB

SYCL Academy

Exercise 12: Temporary Data


In this exercise you will learn how to use temporary data and avoid unnecessary copies to and from the device.


1.) Temporary data with buffer/accessor model

Using what you've learnt so far write a SYCL application that has two kernels, where the first kernel reads in from an input and writes to an intermediate data and the second reads that intermediate data and writes to an output.

Feel free to have the kernel functions perform any computation you like, and feel free to use any method of synchronization and copy back you like.

To ensure the input buffer doesn't copy back to the original pointer call set_final_data on it with nullptr.

To ensure the intermediate buffer doesn't copy to or from the device, create it as uninitialized.

To ensure the output buffer is copied back create is as uninitialized and then call set_final_data on it with the address of the output memory.

2.) Temporary data with USM model

Now do the same but using the USM model.

Again, feel free to have the kernel functions perform any computation you like, and feel free to use any method of synchronization and copy back you like.

Note that when using the USM model since it's an explicit model to avoid unnecessary copies you can simply not perform those copies.

Build and execution hints

For DevCloud via SSH follow these instructions.

For DPC++: instructions.

For AdaptiveCpp: instructions.