taskflow / taskflow

A General-purpose Parallel and Heterogeneous Task Programming System

Home Page:https://taskflow.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Does taskflow have a feature like cudaStreamBeginCapture to create graph dependency automatically when using SYCL backend?

mazhaojia123 opened this issue · comments

Hi,

Does taskflow have a feature like cudaStreamBeginCapture to create graph dependency automatically when using SYCL backend?

Is there any code sample like following code using sycl with taskflow?

# A simple cuda code sample to create graph.
cudaStreamBeginCapture(default_stream, cudaStreamCaptureModeGlobal);
kernel();
cudaStreamEndCapture(default_stream, &graph);
cudaGraphInstantiate(&instance, graph, NULL, NULL, 0);

Thank you.