示例#1
0
文件: CUFFT.cs 项目: JustasB/cudafy
 public CUFFT(GASS.CUDA.CUDA cuda)
 {
     //this.cuda = cuda;
     if (IntPtr.Size == 8)
         _driver = new CUFFTDriver64();
     else
         _driver = new CUFFTDriver32();
 }
示例#2
0
 public CUSPARSEStatus CusparseSetStream(cusparseHandle handle, GASS.CUDA.cudaStream streamId)
 {
     return cusparseSetStream(handle, streamId);
 }