Skip to content

Commit

Permalink
tmp: set CUDA_VERBOSE to ON for debugging
Browse files Browse the repository at this point in the history
Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>
  • Loading branch information
KeisukeShima committed Feb 4, 2022
1 parent fe83453 commit 414fc25
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5)
project(lidar_apollo_instance_segmentation)

# tmp: check cuda build
option(CUDA_VERBOSE "Verbose output of CUDA modules" OFF)
option(CUDA_VERBOSE "Verbose output of CUDA modules" ON)

# set flags for CUDA availability
option(CUDA_AVAIL "CUDA available" OFF)
Expand Down
2 changes: 1 addition & 1 deletion perception/lidar_centerpoint/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()

set(CUDA_VERBOSE OFF)
set(CUDA_VERBOSE ON)

# set flags for CUDA availability
option(CUDA_AVAIL "CUDA available" OFF)
Expand Down
2 changes: 1 addition & 1 deletion perception/tensorrt_yolo/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic -Wno-deprecated-declarations -Werror)
endif()

option(CUDA_VERBOSE "Verbose output of CUDA modules" OFF)
option(CUDA_VERBOSE "Verbose output of CUDA modules" ON)

find_package(ament_cmake_auto REQUIRED)
ament_auto_find_build_dependencies()
Expand Down
2 changes: 1 addition & 1 deletion perception/traffic_light_classifier/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic -Wno-deprecated-declarations -Werror)
endif()

option(CUDA_VERBOSE "Verbose output of CUDA modules" OFF)
option(CUDA_VERBOSE "Verbose output of CUDA modules" ON)
# set flags for CUDA availability
option(CUDA_AVAIL "CUDA available" OFF)
find_package(CUDA)
Expand Down
2 changes: 1 addition & 1 deletion perception/traffic_light_ssd_fine_detector/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ endif()

project(traffic_light_ssd_fine_detector)

option(CUDA_VERBOSE "Verbose output of CUDA modules" OFF)
option(CUDA_VERBOSE "Verbose output of CUDA modules" ON)

find_package(ament_cmake_auto REQUIRED)
ament_auto_find_build_dependencies()
Expand Down

0 comments on commit 414fc25

Please sign in to comment.