Whitespace fix.

This commit is contained in:
Artem Belevich 2018-01-03 16:42:51 -08:00
parent 39616514d0
commit 1c9b54df16

View File

@ -53,7 +53,7 @@ inline __host__ __device__ unsigned get_threadidx_z() { return threadIdx.z; }
inline __host__ __device__ unsigned get_blockidx_x() { return blockIdx.x; }
inline __host__ __device__ unsigned get_blockidx_y() { return blockIdx.y; }
inline __host__ __device__ unsigned get_blockidx_z() { return blockIdx.z; }
#define CUDA_LOG(format, ...) \
#define CUDA_LOG(format, ...) \
printf("[block (%d,%d,%d), thread (%d,%d,%d)]: " format, \
get_blockidx_x(), get_blockidx_y(), get_blockidx_z(), \
get_threadidx_x(), get_threadidx_y(), get_threadidx_z(), \