Skip to content

Instantly share code, notes, and snippets.

@lctseng
Last active August 29, 2015 14:10
Show Gist options
  • Save lctseng/4caa943eededd1dba0a8 to your computer and use it in GitHub Desktop.
Save lctseng/4caa943eededd1dba0a8 to your computer and use it in GitHub Desktop.
CUDA偵錯
cudaError_t cudaStatus;
cudaStatus = cudaGetLastError();
if (cudaStatus != cudaSuccess) {
fprintf(stderr, "Kernel launch failed: %s\n", cudaGetErrorString(cudaStatus));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment