11

I want to make calls to cuBLAS routines asynchronously. Is it possible? If yes, how can I achieve that?

user1439690
  • 659
  • 1
  • 11
  • 26

1 Answers1

11

Use the cublasSetStream function before the cublas calls.

cublasSetStream(cublasHandle, cudaStream);

sgarizvi
  • 16,623
  • 9
  • 64
  • 98