Skip to content

Commit

Permalink
cutlass requires cuda CC >= 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ajaypanyala committed May 31, 2024
1 parent b9c2161 commit fe10e1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/gauxc-cutlass.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Check that only CUDA CC 8.0+ is enabled
foreach( cuda_arch ${CMAKE_CUDA_ARCHITECTURES} )
if( NOT cuda_arch EQUAL 80 )
message(FATAL_ERROR "GauXC Requires CUDA CC 8.0 For CUTLASS")
if( NOT cuda_arch GREATER_EQUAL 80 )
message(FATAL_ERROR "GauXC Requires CUDA CC >= 8.0 For CUTLASS")
endif()
endforeach()

Expand Down

0 comments on commit fe10e1c

Please sign in to comment.