Simplify TORCH_CUDA_ARCH_LIST - function call already returns a string

This commit is contained in:
Break Yang
2025-05-20 14:33:32 -07:00
parent e511952b61
commit 4875dd88d8
@@ -77,7 +77,7 @@ buildPythonPackage {
'';
CUDA_HOME = "${cudaPackages.cudatoolkit}";
TORCH_CUDA_ARCH_LIST = "${lib.concatStringsSep ";" torch.cudaCapabilities}";
TORCH_CUDA_ARCH_LIST = lib.concatStringsSep ";" torch.cudaCapabilities;
dependencies = [
numpy