#ifndef CUDANET_HELPER_H #define CUDANET_HELPER_H #include #include #ifndef BLOCK_SIZE #define BLOCK_SIZE 128 #endif // BLOCK_SIZE /** * @brief CUDA error checking macro * */ #define CUDA_CHECK(call) \ do { \ cudaError_t result = call; \ if (result != cudaSuccess) { \ fprintf(stderr, "CUDA error at %s:%d code=%d(%s) \"%s\" \n", \ __FILE__, __LINE__, static_cast(result), \ cudaGetErrorString(result), #call); \ exit(EXIT_FAILURE); \ } \ } while (0) #endif // CUDANET_HELPER_H