|
| 1 | +// RUN: %clangxx -fsycl -fsycl-targets=spir64-unknown-unknown-sycldevice,nvptx64-unknown-unknown-sycldevice %s -o %t-spir64-nvptx64.out |
| 2 | +// RUN: env SYCL_BE=PI_OPENCL %t-spir64-nvptx64.out |
| 3 | +// RUN: env SYCL_BE=PI_CUDA %t-spir64-nvptx64.out |
| 4 | +// RUN: %clangxx -fsycl -fsycl-targets=nvptx64-unknown-unknown-sycldevice,spir64-unknown-unknown-sycldevice %s -o %t-nvptx64-spir64.out |
| 5 | +// RUN: env SYCL_BE=PI_OPENCL %t-nvptx64-spir64.out |
| 6 | +// RUN: env SYCL_BE=PI_CUDA %t-nvptx64-spir64.out |
| 7 | + |
| 8 | +// REQUIRES: opencl, cuda |
| 9 | + |
| 10 | +//==------- sycl-targets-order.cpp - SYCL -fsycl-targets order test --------==// |
| 11 | +// |
| 12 | +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 13 | +// See https://llvm.org/LICENSE.txt for license information. |
| 14 | +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 15 | +// |
| 16 | +//===----------------------------------------------------------------------===// |
| 17 | + |
| 18 | +#include <CL/sycl.hpp> |
| 19 | +#include <iostream> |
| 20 | + |
| 21 | +int main(int argc, char **argv) { |
| 22 | + |
| 23 | + // select the default SYCL device |
| 24 | + cl::sycl::device device{cl::sycl::default_selector{}}; |
| 25 | + std::cout << "Running on SYCL device " << device.get_info<cl::sycl::info::device::name>() |
| 26 | + << ", driver version " << device.get_info<cl::sycl::info::device::driver_version>() |
| 27 | + << std::endl; |
| 28 | + |
| 29 | + // create a queue |
| 30 | + cl::sycl::queue queue{device}; |
| 31 | + |
| 32 | + // create a buffer of 4 ints to be used inside the kernel code |
| 33 | + cl::sycl::buffer<unsigned int, 1> buffer(4); |
| 34 | + |
| 35 | + // size of the index space for the kernel |
| 36 | + cl::sycl::range<1> NumOfWorkItems{buffer.get_count()}; |
| 37 | + |
| 38 | + // submit a command group(work) to the queue |
| 39 | + queue.submit([&](cl::sycl::handler &cgh) { |
| 40 | + // get write only access to the buffer on a device |
| 41 | + auto accessor = buffer.get_access<cl::sycl::access::mode::write>(cgh); |
| 42 | + // executing the kernel |
| 43 | + cgh.parallel_for<class FillBuffer>( |
| 44 | + NumOfWorkItems, [=](cl::sycl::id<1> WIid) { |
| 45 | + // fill the buffer with indexes |
| 46 | + accessor[WIid] = WIid.get(0); |
| 47 | + }); |
| 48 | + }); |
| 49 | + |
| 50 | + // get read-only access to the buffer on the host |
| 51 | + // introduce an implicit barrier waiting for queue to complete the work |
| 52 | + const auto host_accessor = buffer.get_access<cl::sycl::access::mode::read>(); |
| 53 | + |
| 54 | + // check the results |
| 55 | + bool mismatch = false; |
| 56 | + for (unsigned int i = 0; i < buffer.get_count(); ++i) { |
| 57 | + if (host_accessor[i] != i) { |
| 58 | + std::cout << "The result is incorrect for element: " << i |
| 59 | + << " , expected: " << i << " , got: " << host_accessor[i] |
| 60 | + << std::endl; |
| 61 | + mismatch = true; |
| 62 | + } |
| 63 | + } |
| 64 | + |
| 65 | + if (not mismatch) { |
| 66 | + std::cout << "The results are correct!" << std::endl; |
| 67 | + } |
| 68 | + |
| 69 | + return mismatch; |
| 70 | +} |
0 commit comments