Cleanup: Typo fixes.

This commit is contained in:
Thomas Dinges 2014-07-05 14:25:34 +02:00
parent 5aec61f849
commit 9acabc13de
2 changed files with 5 additions and 5 deletions

@ -102,14 +102,14 @@ public:
case CUDA_ERROR_NOT_READY: return "CUDA not ready"; case CUDA_ERROR_NOT_READY: return "CUDA not ready";
case CUDA_ERROR_ILLEGAL_ADDRESS: return "Illegal adress"; case CUDA_ERROR_ILLEGAL_ADDRESS: return "Illegal address";
case CUDA_ERROR_LAUNCH_OUT_OF_RESOURCES: return "Launch exceeded resources"; case CUDA_ERROR_LAUNCH_OUT_OF_RESOURCES: return "Launch exceeded resources";
case CUDA_ERROR_LAUNCH_TIMEOUT: return "Launch exceeded time out"; case CUDA_ERROR_LAUNCH_TIMEOUT: return "Launch exceeded time out";
case CUDA_ERROR_LAUNCH_INCOMPATIBLE_TEXTURING: return "Launch with incompatible texturing"; case CUDA_ERROR_LAUNCH_INCOMPATIBLE_TEXTURING: return "Launch with incompatible texturing";
case CUDA_ERROR_HARDWARE_STACK_ERROR: return "Stack error"; case CUDA_ERROR_HARDWARE_STACK_ERROR: return "Stack error";
case CUDA_ERROR_ILLEGAL_INSTRUCTION: return "Illegal instruction"; case CUDA_ERROR_ILLEGAL_INSTRUCTION: return "Illegal instruction";
case CUDA_ERROR_MISALIGNED_ADDRESS: return "Misaligned adress"; case CUDA_ERROR_MISALIGNED_ADDRESS: return "Misaligned address";
case CUDA_ERROR_INVALID_ADDRESS_SPACE: return "Invalid adress space"; case CUDA_ERROR_INVALID_ADDRESS_SPACE: return "Invalid address space";
case CUDA_ERROR_INVALID_PC: return "Invalid program counter"; case CUDA_ERROR_INVALID_PC: return "Invalid program counter";
case CUDA_ERROR_LAUNCH_FAILED: return "Launch failed"; case CUDA_ERROR_LAUNCH_FAILED: return "Launch failed";

@ -66,7 +66,7 @@
/* unknown architecture */ /* unknown architecture */
#else #else
#error "Unknown or unuspported CUDA architecture, can't determine launch bounds" #error "Unknown or unsupported CUDA architecture, can't determine launch bounds"
#endif #endif
/* compute number of threads per block and minimum blocks per multiprocessor /* compute number of threads per block and minimum blocks per multiprocessor