Skip to content

Commit

Permalink
Update CMakeLists.txt (vllm-project#244)
Browse files Browse the repository at this point in the history
Removed duplicated lines and suppressed the most noisy warning that hides the actual important ones
  • Loading branch information
gshtras authored Oct 24, 2024
1 parent 46aa3d2 commit ca5e5d3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,12 @@ endif()
set(CMAKE_${VLLM_GPU_LANG}_FLAGS_DEBUG "${CMAKE_${VLLM_GPU_LANG}_FLAGS_DEBUG} -O0 -ggdb3")
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -ggdb3")


#
# Setting up debug flags for pleasant debug experience.
# Suppressing the noisy warning
#
set(CMAKE_${VLLM_GPU_LANG}_FLAGS_DEBUG "${CMAKE_${VLLM_GPU_LANG}_FLAGS_DEBUG} -O0 -ggdb3")
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -ggdb3")
set(CMAKE_${VLLM_GPU_LANG}_FLAGS "${CMAKE_${VLLM_GPU_LANG}_FLAGS} -Wno-unused-result")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-result")

#
# Query torch for additional GPU compilation flags for the given
Expand Down

0 comments on commit ca5e5d3

Please sign in to comment.