Skip to content

Commit

Permalink
ROCm: wip: turn on verbose makefiles temporarily (issue #99)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanecharette committed Jan 14, 2025
1 parent f0d2ab7 commit f720aba
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 0 additions & 1 deletion src-lib/im2col_kernels.cu
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit f720aba

Please sign in to comment.