Skip to content

Commit

Permalink
Fix typo in library_defaults.py (#2024)
Browse files Browse the repository at this point in the history
  • Loading branch information
zinccat authored Jan 8, 2025
1 parent 51b25e7 commit 24f991e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cutlass/library_defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
# Check that Python CUDA version exceeds NVCC version
_nvcc_version = cutlass.nvcc_version()
_cuda_list = _cuda_version.split('.')
_nvcc_list = _cuda_version.split('.')
_nvcc_list = _nvcc_version.split('.')
for val_cuda, val_nvcc in zip(_cuda_list, _nvcc_list):
if int(val_cuda) < int(val_nvcc):
raise Exception(f"Python CUDA version of {_cuda_version} must be greater than or equal to NVCC version of {_nvcc_version}")
Expand Down

0 comments on commit 24f991e

Please sign in to comment.