File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -249,9 +249,8 @@ set(VLLM_EXT_SRC
249249if (VLLM_GPU_LANG STREQUAL "CUDA" )
250250 SET (CUTLASS_ENABLE_HEADERS_ONLY ON CACHE BOOL "Enable only the header library" )
251251
252- # Set CUTLASS_REVISION manually -- its revision detection doesn't work in this case.
253- # Please keep this in sync with FetchContent_Declare line below.
254- set (CUTLASS_REVISION "v3.9.0" CACHE STRING "CUTLASS revision to use" )
252+ # Set CUTLASS_REVISION. Used for FetchContent. Also fixes some bogus messages when building.
253+ set (CUTLASS_REVISION "v3.9.1" CACHE STRING "CUTLASS revision to use" )
255254
256255 # Use the specified CUTLASS source directory for compilation if VLLM_CUTLASS_SRC_DIR is provided
257256 if (DEFINED ENV{VLLM_CUTLASS_SRC_DIR})
@@ -269,7 +268,7 @@ if(VLLM_GPU_LANG STREQUAL "CUDA")
269268 cutlass
270269 GIT_REPOSITORY https://github.com/nvidia/cutlass.git
271270 # Please keep this in sync with CUTLASS_REVISION line above.
272- GIT_TAG v3.9.0
271+ GIT_TAG ${CUTLASS_REVISION}
273272 GIT_PROGRESS TRUE
274273
275274 # Speed up CUTLASS download by retrieving only the specified GIT_TAG instead of the history.
You can’t perform that action at this time.
0 commit comments