Skip to content

Latest commit

 

History

History
46 lines (27 loc) · 1.29 KB

File metadata and controls

46 lines (27 loc) · 1.29 KB

SYCL Academy

Exercise 13: Load Balancing


In this exercise you will learn how to create two separate queues and then split a task across two devices.


1.) Get two devices

Get two devices. If only host device is available then both devices may be identical, that is the host device.

2.) Create queues

Then create a queue for each of the two devices.

3. ) Split a task across the two queues

Using either the application from exercise 6 using the buffer/accessor model or the application from exercise 8 with the USM model create an application where the work is distributed across two devices using the two queues you created.

Remember to create separate buffers for the separate parts of the data being computed.

Remember to wait on the work enqueued to bothqueues to complete and remember to handle errors.

Also note that you will need to have different types defined to name each of the two kernel kernel functions.

4. ) Tweak the load balancing

Try playing around with the distribution of the work between the two devices by changing the range and offset of the two buffers.

Build and execution hints

For DevCloud via SSH follow these instructions.

For DPC++: instructions.

For AdaptiveCpp: instructions.