diff --git a/CMakeLists.txt b/CMakeLists.txt index 9552b2b0..8de43d78 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ IF (NOT CMAKE_BUILD_TYPE) ENDIF () # to get verbose build output, set this to ON -SET (CMAKE_VERBOSE_MAKEFILE OFF) +SET (CMAKE_VERBOSE_MAKEFILE ON) # to get lots of debug output while running cmake, set this to ON SET (CMAKE_FIND_DEBUG_MODE OFF) diff --git a/src-lib/im2col_kernels.cu b/src-lib/im2col_kernels.cu index 70b8a9b9..3a181707 100644 --- a/src-lib/im2col_kernels.cu +++ b/src-lib/im2col_kernels.cu @@ -62,7 +62,6 @@ __global__ void im2col_gpu_kernel(const int n, const float* data_im, //data_im[(channel_in * height + h_in) * width + w_in + i * width + j]; //(*data_col_ptr) = data_im_ptr[ii * width + jj]; - /// @todo V3 should this be "*data_col_ptr" instead? Otherwise, what exactly are we incrementing here? (answer: the pointer...but why?) data_col_ptr += height_col * width_col; } }