bheisler / RustaCUDA

Rusty wrapper for the CUDA Driver API
Apache License 2.0
765 stars 58 forks source link

is Default stream existed? #71

Open mooreland opened 8 months ago

mooreland commented 8 months ago
I created two stream with NON_NLOCKING flag as below, to test host2dev memory copy and kernal run concurrency. 
unfortunately,  They seems still execute in order. if there is default stream stay in system or the concurrency not support now?  thanks!

 let stream_0 = Stream::new(StreamFlags::NON_BLOCKING, None)?;
 let stream_1 = Stream::new(StreamFlags::NON_BLOCKING, None)?;