JuliaGPU / DaggerGPU.jl

GPU integrations for Dagger.jl
Other
50 stars 11 forks source link

Allow stream reuse for serial dependencies #34

Closed jpsamaroo closed 1 month ago

jpsamaroo commented 10 months ago

Currently we synchronize from the host for each kernel, which is unlikely to provide competitive performance vs. standard task-based GPU programming. We should consider some way to track the streams of previous tasks, and then reuse the stream for any future tasks which depend on that task.

jpsamaroo commented 1 month ago

No longer an issue