From 1c9b54df16c064f0cb964d1e5469383e9930dadc Mon Sep 17 00:00:00 2001 From: Artem Belevich Date: Wed, 3 Jan 2018 16:42:51 -0800 Subject: [PATCH] Whitespace fix. --- cutlass/util/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cutlass/util/debug.h b/cutlass/util/debug.h index c10e447f..2aedd17a 100644 --- a/cutlass/util/debug.h +++ b/cutlass/util/debug.h @@ -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(), \