Which component has the problem?
CMake files
Bug Report
A clear and concise description of what the bug is.
The variable CUTLASS_NVCC_ARCHS_SUPPORTED stores the list of architectures that is supported according to the cuda version.
Code reference : https://github.com/NVIDIA/cutlass/blob/main/CMakeLists.txt#L175
This prevents CUTLASS from building its own extensive examples/tests
set(CUTLASS_ENABLE_EXAMPLES OFF CACHE BOOL "" FORCE)
set(CUTLASS_ENABLE_TESTS OFF CACHE BOOL "" FORCE)
set(CUTLASS_ENABLE_LIBRARY OFF CACHE BOOL "" FORCE)
FetchContent_MakeAvailable(cutlass)
> nvcc fatal : Unsupported gpu architecture 'compute_70'
I would like to open a pull request to fix this issue.
Which component has the problem?
CMake files
Bug Report
A clear and concise description of what the bug is.
The variable CUTLASS_NVCC_ARCHS_SUPPORTED stores the list of architectures that is supported according to the cuda version.
Code reference : https://github.com/NVIDIA/cutlass/blob/main/CMakeLists.txt#L175
This prevents CUTLASS from building its own extensive examples/tests
set(CUTLASS_ENABLE_EXAMPLES OFF CACHE BOOL "" FORCE)
set(CUTLASS_ENABLE_TESTS OFF CACHE BOOL "" FORCE)
set(CUTLASS_ENABLE_LIBRARY OFF CACHE BOOL "" FORCE)
FetchContent_MakeAvailable(cutlass)