python312Packages.torch: refactor sources (#404462)

This commit is contained in:
Gaétan Lepage
2025-05-05 22:17:42 +02:00
committed by GitHub
14 changed files with 4 additions and 4 deletions
@@ -131,7 +131,7 @@ buildPythonPackage {
pythonImportsCheck = [ "torch" ];
passthru.tests = callPackage ./tests.nix { };
passthru.tests = callPackage ../tests { };
meta = {
description = "PyTorch: Tensors and Dynamic neural networks in Python with strong GPU acceleration";
@@ -712,7 +712,7 @@ buildPythonPackage rec {
blasProvider = blas.provider;
# To help debug when a package is broken due to CUDA support
inherit brokenConditions;
tests = callPackage ./tests.nix { };
tests = callPackage ../tests { };
};
meta = {
+2 -2
View File
@@ -17429,11 +17429,11 @@ self: super: with self; {
toptica-lasersdk = callPackage ../development/python-modules/toptica-lasersdk { };
torch = callPackage ../development/python-modules/torch { };
torch = callPackage ../development/python-modules/torch/source { };
torch-audiomentations = callPackage ../development/python-modules/torch-audiomentations { };
torch-bin = callPackage ../development/python-modules/torch/bin.nix { triton = self.triton-bin; };
torch-bin = callPackage ../development/python-modules/torch/bin { triton = self.triton-bin; };
torch-geometric = callPackage ../development/python-modules/torch-geometric { };