From 3dda7c22502033854e963fef3826c1f64627e33b Mon Sep 17 00:00:00 2001 From: Tyler Michael Smith Date: Sun, 22 Sep 2024 22:24:59 -0400 Subject: [PATCH] [Bugfix] Avoid some bogus messages RE CUTLASS's revision when building (#8702) --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 03937e4e..2a04cd49 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -192,6 +192,10 @@ set(VLLM_EXT_SRC if(VLLM_GPU_LANG STREQUAL "CUDA") SET(CUTLASS_ENABLE_HEADERS_ONLY ON CACHE BOOL "Enable only the header library") + + # Set CUTLASS_REVISION manually -- its revision detection doesn't work in this case. + set(CUTLASS_REVISION "v3.5.1" CACHE STRING "CUTLASS revision to use") + FetchContent_Declare( cutlass GIT_REPOSITORY https://github.com/nvidia/cutlass.git