Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions third_party/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ sb_micro_path:
# for cuda 12.9 and later Build from commit v3.9 (3.9 release commit) for blackwell support
cuda_cutlass:
ifeq ($(shell echo $(CUDA_VER)">=12.9" | bc -l), 1)
$(eval ARCHS := "100;103")
$(eval ARCHS := "80;90;100;103")
if [ -d cutlass ]; then rm -rf cutlass; fi
git clone --branch v4.1.0 --depth 1 https://github.com/NVIDIA/cutlass.git && cd cutlass
else ifeq ($(shell echo $(CUDA_VER)">=12.8" | bc -l), 1)
$(eval ARCHS := "90;100")
$(eval ARCHS := "80;90;100")
if [ -d cutlass ]; then rm -rf cutlass; fi
git clone --branch v3.9.2 --depth 1 https://github.com/NVIDIA/cutlass.git && cd cutlass
Comment on lines 46 to 51
else ifeq ($(shell echo $(CUDA_VER)">=11.8" | bc -l), 1)
Expand Down
Loading