예제 #1
0
파일: CUDA.cs 프로젝트: rblenis/cudafy
 public void CopyArrayToArray(CUarray src, uint srcIndex, CUarray dst, uint dstIndex, uint bytes)
 {
     this.LastError = CUDADriver.cuMemcpyAtoA(dst, dstIndex, src, srcIndex, bytes);
 }