Unverified Commit 39836de3 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python312Packages.torch: refactor sources (#404462)

parents ad7fb41d a55491ad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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";
+1 −1
Original line number Diff line number Diff line
@@ -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 = {
Loading