diff --git a/CMakeLists.txt b/CMakeLists.txt index 538f9adcb24e..e59e912a9913 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -171,16 +171,6 @@ if(NVCC_THREADS AND VLLM_GPU_LANG STREQUAL "CUDA") list(APPEND VLLM_GPU_FLAGS "--threads=${NVCC_THREADS}") endif() -# -# Set nvcc fatbin compression. -# -if(VLLM_GPU_LANG STREQUAL "CUDA") - if(${CMAKE_CUDA_COMPILER_VERSION} VERSION_GREATER_EQUAL 12.8) - list(APPEND VLLM_GPU_FLAGS "-Xfatbin" "-compress-all" "-compress-mode=size") - endif() -endif() - - # # Use FetchContent for C++ dependencies that are compiled as part of vLLM's build process. # setup.py will override FETCHCONTENT_BASE_DIR to play nicely with sccache.