user1439690
user1439690

Reputation: 679

Asynchronous cuBLAS calls

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

Upvotes: 12

Views: 2337

Answers (1)

sgarizvi
sgarizvi

Reputation: 16796

Use the cublasSetStream function before the cublas calls.

cublasSetStream(cublasHandle, cudaStream);

Upvotes: 11

Related Questions