Can I use cuda stream with double precision

Hi,

does anybody know, if I can use cuda streams with double data? In my books they only use integer or float and in the cuda guides is nothing else about it.

Streams is a completely data agnostic feature of CUDA, so yes you can use whatever data types you want.

Perfect,

thanks for your reply!