// This program demonstrates how to rebind syclFlow tasks // to different device operations. #include int main() { size_t N = 10000; sycl::queue queue; auto data = sycl::malloc_shared(N, queue); tf::syclFlow syclflow(queue); // fill data with -1 std::cout << "filling data with -1 ...\n"; tf::syclTask task = syclflow.fill(data, -1, N); syclflow.offload(); for(size_t i=0; i