Skip to content

Instantly share code, notes, and snippets.

@turkishviking
turkishviking / gpu_transfert.cpp
Last active November 26, 2018 14:24
sycl gpu
gpu_data::copy_to_host() const
{
// here data_host and data_device are mutable float* member of gpu_data
sycl_device::device().memcpyDeviceToHost(data_host, data_device, size()*sizeof(float)); // doesn't work
}