Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.

Commit 3dda7c2

Browse files
authored
[Bugfix] Avoid some bogus messages RE CUTLASS's revision when building (vllm-project#8702)
1 parent 92ba7e7 commit 3dda7c2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,10 @@ set(VLLM_EXT_SRC
192192

193193
if(VLLM_GPU_LANG STREQUAL "CUDA")
194194
SET(CUTLASS_ENABLE_HEADERS_ONLY ON CACHE BOOL "Enable only the header library")
195+
196+
# Set CUTLASS_REVISION manually -- its revision detection doesn't work in this case.
197+
set(CUTLASS_REVISION "v3.5.1" CACHE STRING "CUTLASS revision to use")
198+
195199
FetchContent_Declare(
196200
cutlass
197201
GIT_REPOSITORY https://github.com/nvidia/cutlass.git

0 commit comments

Comments
 (0)