Skip to content

python3Packages.torch: 2.7.1 -> 2.8.0#431973

Merged
GaetanLepage merged 4 commits intoNixOS:masterfrom
GaetanLepage:update/python3Packages.torch
Aug 31, 2025
Merged

python3Packages.torch: 2.7.1 -> 2.8.0#431973
GaetanLepage merged 4 commits intoNixOS:masterfrom
GaetanLepage:update/python3Packages.torch

Conversation

@GaetanLepage
Copy link
Contributor

@GaetanLepage GaetanLepage commented Aug 8, 2025

Things done

Update the torch ecosystem:


  • Built on platform:
    • x86_64-linux
    • aarch64-linux
    • x86_64-darwin
    • aarch64-darwin
  • Tested, as applicable:
  • Ran nixpkgs-review on this PR. See nixpkgs-review usage.
  • Tested basic functionality of all binary files, usually in ./result/bin/.
  • Nixpkgs Release Notes
    • Package update: when the change is major or breaking.
  • NixOS Release Notes
    • Module addition: when adding a new NixOS module.
    • Module update: when the change is significant.
  • Fits CONTRIBUTING.md, pkgs/README.md, maintainers/README.md and other READMEs.

Add a 👍 reaction to pull requests you find important.

@GaetanLepage GaetanLepage marked this pull request as draft August 8, 2025 09:50
@GaetanLepage
Copy link
Contributor Author

GaetanLepage commented Aug 8, 2025

@zeuner unroll-src fails with:

nixpkgs on  update/python3Packages.torch took 3s
❮ ./result 2.8.0 > pkgs/development/python-modules/torch/source/src.nix
Loading required package: processx
Loading required package: jsonlite
Loading required package: stringr
Loading required package: plyr
Loading required package: dplyr

Attaching package: ‘dplyr’

The following objects are masked from ‘package:plyr’:

    arrange, count, desc, failwith, id, mutate, rename, summarise,
    summarize

The following objects are masked from ‘package:stats’:

    filter, lag

The following objects are masked from ‘package:base’:

    intersect, setdiff, setequal, union

Error in `run("bash", c("-c", paste(c(paste0("cd ", fetched), paste0("git checkout ", …`:
! System command 'bash' failed
---
Exit status: 128
Stderr:
fatal: unable to read tree (3ed8d2ec4ba35ef5d9d8353826209b6f868f63d3)
---
Backtrace:
1. global clone_missing()
2. processx::run("bash", c("-c", paste(c(paste0("cd ", fetched), paste0("git checkout "…
3. processx:::throw(new_process_error(res, call = sys.call(), echo = echo, …
Execution halted

Any idea?

@nixpkgs-ci nixpkgs-ci bot added 10.rebuild-darwin: 0 This PR does not cause any packages to rebuild on Darwin. 10.rebuild-linux: 0 This PR does not cause any packages to rebuild on Linux. 6.topic: python Python is a high-level, general-purpose programming language. labels Aug 8, 2025
@zeuner
Copy link
Contributor

zeuner commented Aug 12, 2025

Any idea?

It fails fetching the submodule external/cutlass of https://github.com/pytorch/fbgemm. The branch FBGEMM of https://github.com/jwfromm/cutlass (referenced from .gitmodules) does not provide the 3ed8d2ec4ba35ef5d9d8353826209b6f868f63d3 commit (as expected by git submodule status).

Looking further for a good way to mitigate this.

@GaetanLepage
Copy link
Contributor Author

Any idea?

It fails fetching the submodule external/cutlass of https://github.com/pytorch/fbgemm. The branch FBGEMM of https://github.com/jwfromm/cutlass (referenced from .gitmodules) does not provide the 3ed8d2ec4ba35ef5d9d8353826209b6f868f63d3 commit (as expected by git submodule status).

Looking further for a good way to mitigate this.

Thanks a lot!

@GaetanLepage GaetanLepage force-pushed the update/python3Packages.torch branch from 3109d97 to bb6a34d Compare August 14, 2025 18:24
@nixpkgs-ci nixpkgs-ci bot added 10.rebuild-linux: 501+ This PR causes many rebuilds on Linux and should normally target the staging branches. 10.rebuild-darwin: 501+ This PR causes many rebuilds on Darwin and should normally target the staging branches. 11.by: package-maintainer This PR was created by a maintainer of all the package it changes. 10.rebuild-linux: 501-1000 This PR causes many rebuilds on Linux and should normally target the staging branches. 10.rebuild-darwin: 501-1000 This PR causes many rebuilds on Darwin and should normally target the staging branches. and removed 10.rebuild-darwin: 0 This PR does not cause any packages to rebuild on Darwin. 10.rebuild-linux: 0 This PR does not cause any packages to rebuild on Linux. labels Aug 14, 2025
@GaetanLepage GaetanLepage force-pushed the update/python3Packages.torch branch from bb6a34d to 4340d29 Compare August 14, 2025 19:52
@GaetanLepage GaetanLepage force-pushed the update/python3Packages.torch branch from 4340d29 to 013fafc Compare August 25, 2025 23:48
@benjaminhottell
Copy link

Hello, I don't know if this will help much, but I believe I have a working setup for pytorch 2.8.0 with ROCm.

https://github.com/benjaminhottell/nix-rocm-pytorch

I don't think all of the things I did were strictly necessary. But maybe some of the patches will help you. Feel free to take as little or as much from that repo as you wish :)

@GaetanLepage
Copy link
Contributor Author

Hello, I don't know if this will help much, but I believe I have a working setup for pytorch 2.8.0 with ROCm.

https://github.com/benjaminhottell/nix-rocm-pytorch

I don't think all of the things I did were strictly necessary. But maybe some of the patches will help you. Feel free to take as little or as much from that repo as you wish :)

Thanks for proposing.
I'm currently block on a setuptools version issue:

ERROR Missing dependencies:
        setuptools<80.0,>=62.3.0

@GaetanLepage GaetanLepage force-pushed the update/python3Packages.torch branch from 013fafc to ffeee28 Compare August 27, 2025 09:05
@benjaminhottell
Copy link

Hi, I got around this in my derivation by intentionally downloading setuptools 79.0.1 as you can see here: https://github.com/benjaminhottell/nix-rocm-pytorch/blob/main/derivations/setuptools-79_0_1.nix

I then set up a special python for pytorch's build process with that specific setuptools included:

{ pkgs ? import <nixpkgs> {} }:
let
  # Version specified in requirements as: <80.0
  setuptools = pkgs.callPackage ./setuptools-79_0_1.nix { inherit pkgs; };
 };

  # The python instance with pytorch's dependencies installed
  python-build = (pkgs.python312.withPackages(pypkgs: [
    
    # ...

    # Discovered by running and letting it crash
    setuptools

    # ...
  ]));

in
  python-build

This is because pytorch only supports (to my knowledge) versions under version 80.0.0

I believe the version of setuptools that you get from python3Packages.setuptools is greater than 80.0.0

nix-shell -p python3Packages.setuptools
python3 -c 'import setuptools; print(setuptools.__version__)'

Skimming through your PR, I believe you are currently patching out the requirements to make a version greater than 80.0.0 work anyway.

    substituteInPlace pyproject.toml \
      --replace-fail "setuptools>=62.3.0,<80.0" "setuptools"

I have not tried this, and I am unsure if that will work. In my experience the setup.py script is rather smart and you may need to patch more than the pyproject.toml entry.

@GaetanLepage
Copy link
Contributor Author

GaetanLepage commented Aug 27, 2025

Now failing during compilation (buildPhase) with:

^M[2151/7093] Building CXX object c10/CMakeFiles/c10.dir/core/Device.cpp.o^M[2152/7093] Building CXX object c10/CMakeFiles/c10.dir/core/ConstantSymNodeImpl.cpp.o^M[2152/7093] Building CXX object c10/CMakeFiles/c1>
FAILED: [code=1] /build/pytorch/torch/utils/data/datapipes/datapipe.pyi
cd /build/pytorch && /nix/store/0vnarm4qjnj16dr3zj9kwq6bn79c0icn-cmake-3.31.7/bin/cmake -E env PYTHONPATH="/build/pytorch/torch/.." /nix/store/iyff8129iampdw13nlfqalzhxy8y1hi9-python3-3.13.6/bin/python3.13 /build>
Traceback (most recent call last):
  File "/build/pytorch/torch/utils/data/datapipes/gen_pyi.py", line 6, in <module>
    from typing_extensions import deprecated
ModuleNotFoundError: No module named 'typing_extensions'
^M[2297/7093] Building C object sleef/src/libm/CMakeFiles/sleefdetsse2.dir/sleefsimddp.c.o^M[2298/7093] Building C object sleef/src/libm/CMakeFiles/sleefsse2.dir/sleefsimddp.c.o^M[2299/7093] Regenerating version >
ninja: build stopped: subcommand failed.

It's weird because typing-extensions is in dependencies...

Probably introduced in pytorch/pytorch@9b2a45a.

@LunNova
Copy link
Member

LunNova commented Aug 27, 2025

PYTHONPATH= override in the cmake doing it?

@LunNova
Copy link
Member

LunNova commented Aug 27, 2025

This should work:

    # path override breaks finding site packages
    substituteInPlace torch/CMakeLists.txt \
      --replace-fail 'env PYTHONPATH=' 'env PYTHONPATH_unused='

@GaetanLepage GaetanLepage force-pushed the update/python3Packages.torch branch from ffeee28 to cf9c05a Compare August 27, 2025 15:49
@LunNova
Copy link
Member

LunNova commented Aug 27, 2025

ROCm build still needs some work. Some substitutes no longer apply. LoadHIP changed and is crashing finding rocm-core. Can probably comment out find_package(rocm-core CONFIG) to workaround, may become unneeded after ROCm 6.4 bump.

@GaetanLepage
Copy link
Contributor Author

Now failing with:

CMake Error: The source directory "/nix/store/iyff8129iampdw13nlfqalzhxy8y1hi9-python3-3.13.6/bin/python3.13" is a file, not a directory.

@GaetanLepage
Copy link
Contributor Author

Review run looks much better now. torchWithRocm fails for 3.12 importing setuptools but is fine for 3.13.

       > Running phase: buildPhase
       > Executing pypaBuildPhase
       > Traceback (most recent call last):
       >   File "/build/pytorch/setup.py", line 263, in <module>
       >     import setuptools.command.build_ext
       > ModuleNotFoundError: No module named 'setuptools'

Does that make any sense?

@LunNova LunNova mentioned this pull request Aug 29, 2025
18 tasks
@LunNova
Copy link
Member

LunNova commented Aug 29, 2025

Seems like rocmPackages.clr in buildInputs messes up the python 3.12 env. :/

@LunNova
Copy link
Member

LunNova commented Aug 29, 2025

Should we just mark broken if python version == 3.12 + rocmSupport enabled? That's probably an issue in rocmPackages.clr and I can try to address it separately.

@GaetanLepage
Copy link
Contributor Author

Should we just mark broken if python version == 3.12 + rocmSupport enabled? That's probably an issue in rocmPackages.clr and I can try to address it separately.

Sure, fine by me.
@prusnak any further requests before merging?

@GaetanLepage GaetanLepage requested a review from NickCao August 29, 2025 21:33
@NickCao
Copy link
Member

NickCao commented Aug 29, 2025

Seems like rocmPackages.clr in buildInputs messes up the python 3.12 env. :/

Why exactly?

@LunNova
Copy link
Member

LunNova commented Aug 29, 2025

Why exactly?

@NickCao I think what's happening is that clr propagates rocminfo which propagates python3 which is ending up as python3.13 because rocmPackages aren't part of the python package set.

rocminfo probably needs this dropped: https://github.com/NixOS/nixpkgs/blame/2a54616c742ed35e28b1e599b528c4ead690af7f/pkgs/development/rocm-modules/6/rocminfo/default.nix#L39 - but might need more patching on top of that and will trigger rebuilds of the entire ROCm package set which includes CK and takes 5ever to review run.

Could try to fix it in this PR but the root cause been messed up for 3 years and is only breaking 3.12 torchWithRocm so I think addressing it in a followup PR is fine.

@NickCao
Copy link
Member

NickCao commented Aug 29, 2025

only breaking 3.12 torchWithRocm so I think addressing it in a followup PR is fine.

Breaking all non default python versions? Mark all of them as broken then.

@LunNova
Copy link
Member

LunNova commented Aug 29, 2025

Do you have a suggestion for the specific broken = expression?

@LunNova
Copy link
Member

LunNova commented Aug 29, 2025

rocminfo python leakage fix PR: #438399

@GaetanLepage GaetanLepage force-pushed the update/python3Packages.torch branch from 4f6645e to 15e06b1 Compare August 29, 2025 22:47
@GaetanLepage
Copy link
Contributor Author

only breaking 3.12 torchWithRocm so I think addressing it in a followup PR is fine.

Breaking all non default python versions? Mark all of them as broken then.

I managed to mark it as broken on non-default python versions.

Comment on lines 365 to 377
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is supposed to be set externally by us, as an envvar.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Turns out we can drop the ROCM_VERSION change entirely and don't need to add an env var.

I think this was working around the rocm version header being broken in an earlier iteration of nixpkgs rocm (6.0?), and hasn't been needed since rocmPackages.clr learned to include a proper version header.

Test with the version patch dropped:

python3.13-torch> hip VERSION: 6.3.42134
python3.13-torch> -- Reading ROCM version from: /nix/store/6j8iah88is5dpqpyq32bppm3r6h56qw6-clr-6.3.3/include/rocm-core/rocm_version.h
python3.13-torch> -- Content:
python3.13-torch> 
python3.13-torch> ***** ROCm version from rocm_version.h ****
python3.13-torch> 
python3.13-torch> ROCM_VERSION_DEV: 6.3.3
python3.13-torch> ROCM_VERSION_DEV_MAJOR: 6
python3.13-torch> ROCM_VERSION_DEV_MINOR: 3
python3.13-torch> ROCM_VERSION_DEV_PATCH: 3
python3.13-torch> ROCM_VERSION_DEV_INT:   60303
python3.13-torch> HIP_VERSION_MAJOR: 6
python3.13-torch> HIP_VERSION_MINOR: 3
python3.13-torch> TORCH_HIP_VERSION: 603

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this handwritten or generated, this looks like a maintenance nightmare.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is generated by python3Packages.torch.unroll-src.

@GaetanLepage GaetanLepage force-pushed the update/python3Packages.torch branch from b2d1c50 to ab2d7e4 Compare August 30, 2025 14:06
@LunNova
Copy link
Member

LunNova commented Aug 30, 2025

nixpkgs-review result

Generated using nixpkgs-review.

Command: nixpkgs-review pr 431973
Commit: ab2d7e40168939df18c44a68f3d59098a24ccb56


x86_64-linux

❌ 68 packages failed to build:
  • contact
  • contact.dist
  • docling-serve (python313Packages.docling-serve)
  • docling-serve.dist (python313Packages.docling-serve.dist)
  • lacus
  • lacus.dist
  • open-webui
  • open-webui.dist
  • python312Packages.ax-platform
  • python312Packages.ax-platform.dist
  • python312Packages.cleanlab
  • python312Packages.cleanlab.dist
  • python312Packages.cnvkit
  • python312Packages.cnvkit.dist
  • python312Packages.docling-serve
  • python312Packages.docling-serve.dist
  • python312Packages.flyingsquid
  • python312Packages.flyingsquid.dist
  • python312Packages.funsor
  • python312Packages.funsor.dist
  • python312Packages.imagededup
  • python312Packages.imagededup.dist
  • python312Packages.k-diffusion
  • python312Packages.k-diffusion.dist
  • python312Packages.kornia
  • python312Packages.kornia.dist
  • python312Packages.lacuscore
  • python312Packages.lacuscore.dist
  • python312Packages.lm-eval
  • python312Packages.lm-eval.dist
  • python312Packages.meshtastic
  • python312Packages.meshtastic.dist
  • python312Packages.pandera
  • python312Packages.pandera.dist
  • python312Packages.pgmpy
  • python312Packages.pgmpy.dist
  • python312Packages.pytorch-pfn-extras
  • python312Packages.pytorch-pfn-extras.dist
  • python312Packages.torcheval
  • python312Packages.torcheval.dist
  • python313Packages.ax-platform
  • python313Packages.ax-platform.dist
  • python313Packages.cnvkit
  • python313Packages.cnvkit.dist
  • python313Packages.flyingsquid
  • python313Packages.flyingsquid.dist
  • python313Packages.funsor
  • python313Packages.funsor.dist
  • python313Packages.imagededup
  • python313Packages.imagededup.dist
  • python313Packages.k-diffusion
  • python313Packages.k-diffusion.dist
  • python313Packages.kornia
  • python313Packages.kornia.dist
  • python313Packages.lacuscore
  • python313Packages.lacuscore.dist
  • python313Packages.lm-eval
  • python313Packages.lm-eval.dist
  • python313Packages.meshtastic
  • python313Packages.meshtastic.dist
  • python313Packages.pandera
  • python313Packages.pandera.dist
  • python313Packages.pgmpy
  • python313Packages.pgmpy.dist
  • python313Packages.pytorch-pfn-extras
  • python313Packages.pytorch-pfn-extras.dist
  • python313Packages.torcheval
  • python313Packages.torcheval.dist
✅ 1066 packages built:
  • aider-chat-full
  • aider-chat-full.dist
  • aider-chat-with-help
  • aider-chat-with-help.dist
  • alpaca
  • backgroundremover
  • backgroundremover.dist
  • beets (beetsPackages.beets, beetsPackages.beets-stable, python313Packages.beets)
  • beets-unstable (beetsPackages.beets-unstable)
  • beets-unstable.dist (beetsPackages.beets-unstable.dist)
  • beets-unstable.doc (beetsPackages.beets-unstable.doc)
  • beets-unstable.man (beetsPackages.beets-unstable.man)
  • beets.dist (beetsPackages.beets-stable.dist, beetsPackages.beets.dist, python313Packages.beets.dist)
  • beets.doc (beetsPackages.beets-stable.doc, beetsPackages.beets.doc, python313Packages.beets.doc)
  • beets.man (beetsPackages.beets-stable.man, beetsPackages.beets.man, python313Packages.beets.man)
  • dbx
  • dbx.dist
  • docling (python313Packages.docling)
  • docling.dist (python313Packages.docling.dist)
  • easyocr (python313Packages.easyocr)
  • easyocr.dist (python313Packages.easyocr.dist)
  • exo
  • exo.dist
  • frigate
  • home-assistant-component-tests.tami4
  • immich-machine-learning
  • immich-machine-learning.dist
  • libretranslate (python313Packages.libretranslate)
  • libretranslate.dist (python313Packages.libretranslate.dist)
  • mlflow-server
  • mlflow-server.dist
  • mokuro
  • mokuro.dist
  • newelle
  • openai-whisper (python313Packages.openai-whisper)
  • openai-whisper.dist (python313Packages.openai-whisper.dist)
  • opensplat
  • opensplatWithCuda
  • owocr
  • owocr.dist
  • pianotrans
  • pianotrans.dist
  • pitivi
  • python312Packages.accelerate
  • python312Packages.accelerate.dist
  • python312Packages.albumentations
  • python312Packages.albumentations.dist
  • python312Packages.ale-py
  • python312Packages.ale-py.dist
  • python312Packages.anndata
  • python312Packages.anndata.dist
  • python312Packages.apptools
  • python312Packages.apptools.dist
  • python312Packages.apricot-select
  • python312Packages.apricot-select.dist
  • python312Packages.argos-translate-files
  • python312Packages.argos-translate-files.dist
  • python312Packages.argostranslate
  • python312Packages.argostranslate.dist
  • python312Packages.array-api-compat
  • python312Packages.array-api-compat.dist
  • python312Packages.asteroid-filterbanks
  • python312Packages.asteroid-filterbanks.dist
  • python312Packages.attacut
  • python312Packages.attacut.dist
  • python312Packages.augmax
  • python312Packages.augmax.dist
  • python312Packages.beetcamp
  • python312Packages.beetcamp.dist
  • python312Packages.beets
  • python312Packages.beets.dist
  • python312Packages.beets.doc
  • python312Packages.beets.man
  • python312Packages.bitsandbytes
  • python312Packages.bitsandbytes.dist
  • python312Packages.blosc2
  • python312Packages.blosc2.dist
  • python312Packages.botorch
  • python312Packages.botorch.dist
  • python312Packages.brax
  • python312Packages.brax.dist
  • python312Packages.captum
  • python312Packages.captum.dist
  • python312Packages.clean-fid
  • python312Packages.clean-fid.dist
  • python312Packages.cleanvision
  • python312Packages.cleanvision.dist
  • python312Packages.clip
  • python312Packages.clip-anytorch
  • python312Packages.clip-anytorch.dist
  • python312Packages.clip.dist
  • python312Packages.colbert-ai
  • python312Packages.colbert-ai.dist
  • python312Packages.compressai
  • python312Packages.compressai.dist
  • python312Packages.compressed-tensors
  • python312Packages.compressed-tensors.dist
  • python312Packages.ctranslate2
  • python312Packages.ctranslate2.dist
  • python312Packages.curated-transformers
  • python312Packages.curated-transformers.dist
  • python312Packages.cut-cross-entropy
  • python312Packages.cut-cross-entropy.dist
  • python312Packages.dalle-mini
  • python312Packages.dalle-mini.dist
  • python312Packages.dctorch
  • python312Packages.dctorch.dist
  • python312Packages.deepdish
  • python312Packages.deepdish.dist
  • python312Packages.deepface
  • python312Packages.deepface.dist
  • python312Packages.deepsearch-toolkit
  • python312Packages.deepsearch-toolkit.dist
  • python312Packages.deepwave
  • python312Packages.deepwave.dist
  • python312Packages.depyf
  • python312Packages.depyf.dist
  • python312Packages.detectron2
  • python312Packages.detectron2.dist
  • python312Packages.diffusers
  • python312Packages.diffusers.dist
  • python312Packages.dm-sonnet
  • python312Packages.dm-sonnet.dist
  • python312Packages.docling
  • python312Packages.docling-core
  • python312Packages.docling-core.dist
  • python312Packages.docling-ibm-models
  • python312Packages.docling-ibm-models.dist
  • python312Packages.docling-jobkit
  • python312Packages.docling-jobkit.dist
  • python312Packages.docling-parse
  • python312Packages.docling-parse.dist
  • python312Packages.docling.dist
  • python312Packages.easyocr
  • python312Packages.easyocr.dist
  • python312Packages.edward
  • python312Packages.edward.dist
  • python312Packages.effdet
  • python312Packages.effdet.dist
  • python312Packages.einops
  • python312Packages.einops.dist
  • python312Packages.encodec
  • python312Packages.encodec.dist
  • python312Packages.envisage
  • python312Packages.envisage.dist
  • python312Packages.evosax
  • python312Packages.evosax.dist
  • python312Packages.experiment-utilities
  • python312Packages.experiment-utilities.dist
  • python312Packages.ezyrb
  • python312Packages.ezyrb.dist
  • python312Packages.facenet-pytorch
  • python312Packages.facenet-pytorch.dist
  • python312Packages.fairscale
  • python312Packages.fairscale.dist
  • python312Packages.fastai
  • python312Packages.fastai.dist
  • python312Packages.faster-whisper
  • python312Packages.faster-whisper.dist
  • python312Packages.fastmri
  • python312Packages.fastmri.dist
  • python312Packages.fickling
  • python312Packages.fickling.dist
  • python312Packages.finetuning-scheduler
  • python312Packages.finetuning-scheduler.dist
  • python312Packages.flammkuchen
  • python312Packages.flammkuchen.dist
  • python312Packages.flax
  • python312Packages.flax.dist
  • python312Packages.fvcore
  • python312Packages.fvcore.dist
  • python312Packages.geotorch
  • python312Packages.geotorch.dist
  • python312Packages.gliner
  • python312Packages.gliner.dist
  • python312Packages.gluonts
  • python312Packages.gluonts.dist
  • python312Packages.gpytorch
  • python312Packages.gpytorch.dist
  • python312Packages.grad-cam
  • python312Packages.grad-cam.dist
  • python312Packages.gradio
  • python312Packages.gradio-client
  • python312Packages.gradio-client.dist
  • python312Packages.gradio-pdf
  • python312Packages.gradio-pdf.dist
  • python312Packages.gradio.dist
  • python312Packages.graphtage
  • python312Packages.graphtage.dist
  • python312Packages.guidance
  • python312Packages.guidance.dist
  • python312Packages.gymnasium
  • python312Packages.gymnasium.dist
  • python312Packages.h5io
  • python312Packages.h5io.dist
  • python312Packages.hyper-connections
  • python312Packages.hyper-connections.dist
  • python312Packages.ignite
  • python312Packages.ignite.dist
  • python312Packages.imgcat
  • python312Packages.imgcat.dist
  • python312Packages.insightface
  • python312Packages.insightface.dist
  • python312Packages.invisible-watermark
  • python312Packages.invisible-watermark.dist
  • python312Packages.iopath
  • python312Packages.iopath.dist
  • python312Packages.julius
  • python312Packages.julius.dist
  • python312Packages.keras
  • python312Packages.keras.dist
  • python312Packages.kokoro
  • python312Packages.kokoro.dist
  • python312Packages.kserve
  • python312Packages.kserve.dist
  • python312Packages.lancedb
  • python312Packages.lancedb.dist
  • python312Packages.langchain-huggingface
  • python312Packages.langchain-huggingface.dist
  • python312Packages.layoutparser
  • python312Packages.layoutparser.dist
  • python312Packages.libretranslate
  • python312Packages.libretranslate.dist
  • python312Packages.librosa
  • python312Packages.librosa.dist
  • python312Packages.lightning
  • python312Packages.lightning.dist
  • python312Packages.linear-operator
  • python312Packages.linear-operator.dist
  • python312Packages.lion-pytorch
  • python312Packages.lion-pytorch.dist
  • python312Packages.llama-cloud-services
  • python312Packages.llama-cloud-services.dist
  • python312Packages.llama-index
  • python312Packages.llama-index-cli
  • python312Packages.llama-index-cli.dist
  • python312Packages.llama-index-core
  • python312Packages.llama-index-core.dist
  • python312Packages.llama-index-embeddings-gemini
  • python312Packages.llama-index-embeddings-gemini.dist
  • python312Packages.llama-index-embeddings-google
  • python312Packages.llama-index-embeddings-google.dist
  • python312Packages.llama-index-embeddings-huggingface
  • python312Packages.llama-index-embeddings-huggingface.dist
  • python312Packages.llama-index-embeddings-ollama
  • python312Packages.llama-index-embeddings-ollama.dist
  • python312Packages.llama-index-embeddings-openai
  • python312Packages.llama-index-embeddings-openai.dist
  • python312Packages.llama-index-graph-stores-nebula
  • python312Packages.llama-index-graph-stores-nebula.dist
  • python312Packages.llama-index-graph-stores-neo4j
  • python312Packages.llama-index-graph-stores-neo4j.dist
  • python312Packages.llama-index-graph-stores-neptune
  • python312Packages.llama-index-graph-stores-neptune.dist
  • python312Packages.llama-index-indices-managed-llama-cloud
  • python312Packages.llama-index-indices-managed-llama-cloud.dist
  • python312Packages.llama-index-legacy
  • python312Packages.llama-index-legacy.dist
  • python312Packages.llama-index-llms-ollama
  • python312Packages.llama-index-llms-ollama.dist
  • python312Packages.llama-index-llms-openai
  • python312Packages.llama-index-llms-openai-like
  • python312Packages.llama-index-llms-openai-like.dist
  • python312Packages.llama-index-llms-openai.dist
  • python312Packages.llama-index-multi-modal-llms-openai
  • python312Packages.llama-index-multi-modal-llms-openai.dist
  • python312Packages.llama-index-readers-database
  • python312Packages.llama-index-readers-database.dist
  • python312Packages.llama-index-readers-file
  • python312Packages.llama-index-readers-file.dist
  • python312Packages.llama-index-readers-json
  • python312Packages.llama-index-readers-json.dist
  • python312Packages.llama-index-readers-llama-parse
  • python312Packages.llama-index-readers-llama-parse.dist
  • python312Packages.llama-index-readers-s3
  • python312Packages.llama-index-readers-s3.dist
  • python312Packages.llama-index-readers-twitter
  • python312Packages.llama-index-readers-twitter.dist
  • python312Packages.llama-index-readers-txtai
  • python312Packages.llama-index-readers-txtai.dist
  • python312Packages.llama-index-readers-weather
  • python312Packages.llama-index-readers-weather.dist
  • python312Packages.llama-index-vector-stores-chroma
  • python312Packages.llama-index-vector-stores-chroma.dist
  • python312Packages.llama-index-vector-stores-google
  • python312Packages.llama-index-vector-stores-google.dist
  • python312Packages.llama-index-vector-stores-postgres
  • python312Packages.llama-index-vector-stores-postgres.dist
  • python312Packages.llama-index-vector-stores-qdrant
  • python312Packages.llama-index-vector-stores-qdrant.dist
  • python312Packages.llama-index.dist
  • python312Packages.llama-parse
  • python312Packages.llama-parse.dist
  • python312Packages.llguidance
  • python312Packages.llguidance.dist
  • python312Packages.llm-sentence-transformers
  • python312Packages.llm-sentence-transformers.dist
  • python312Packages.local-attention
  • python312Packages.local-attention.dist
  • python312Packages.manga-ocr
  • python312Packages.manga-ocr.dist
  • python312Packages.manifest-ml
  • python312Packages.manifest-ml.dist
  • python312Packages.markitdown
  • python312Packages.markitdown.dist
  • python312Packages.mayavi
  • python312Packages.mayavi.dist
  • python312Packages.mdtraj
  • python312Packages.mdtraj.dist
  • python312Packages.mhcflurry
  • python312Packages.mhcflurry.dist
  • python312Packages.minari
  • python312Packages.minari.dist
  • python312Packages.mlcroissant
  • python312Packages.mlcroissant.dist
  • python312Packages.mlflow
  • python312Packages.mlflow.dist
  • python312Packages.mmcv
  • python312Packages.mmcv.dist
  • python312Packages.mmengine
  • python312Packages.mmengine.dist
  • python312Packages.mne
  • python312Packages.mne.dist
  • python312Packages.monai
  • python312Packages.monai.dist
  • python312Packages.monotonic-alignment-search
  • python312Packages.monotonic-alignment-search.dist
  • python312Packages.monty
  • python312Packages.monty.dist
  • python312Packages.mtcnn
  • python312Packages.mtcnn.dist
  • python312Packages.nianet
  • python312Packages.nianet.dist
  • python312Packages.noisereduce
  • python312Packages.noisereduce.dist
  • python312Packages.open-clip-torch
  • python312Packages.open-clip-torch.dist
  • python312Packages.openai-whisper
  • python312Packages.openai-whisper.dist
  • python312Packages.optimum
  • python312Packages.optimum.dist
  • python312Packages.optuna
  • python312Packages.optuna-dashboard
  • python312Packages.optuna-dashboard.dist
  • python312Packages.optuna.dist
  • python312Packages.orbax-checkpoint
  • python312Packages.orbax-checkpoint.dist
  • python312Packages.outlines
  • python312Packages.outlines-core
  • python312Packages.outlines-core.dist
  • python312Packages.outlines.dist
  • python312Packages.pandantic
  • python312Packages.pandantic.dist
  • python312Packages.pandas-stubs
  • python312Packages.pandas-stubs.dist
  • python312Packages.pdfplumber
  • python312Packages.pdfplumber.dist
  • python312Packages.peacasso
  • python312Packages.peacasso.dist
  • python312Packages.peft
  • python312Packages.peft.dist
  • python312Packages.pettingzoo
  • python312Packages.pettingzoo.dist
  • python312Packages.piano-transcription-inference
  • python312Packages.piano-transcription-inference.dist
  • python312Packages.pomegranate
  • python312Packages.pomegranate.dist
  • python312Packages.pyannote-audio
  • python312Packages.pyannote-audio.dist
  • python312Packages.pyannote-pipeline
  • python312Packages.pyannote-pipeline.dist
  • python312Packages.pydmd
  • python312Packages.pydmd.dist
  • python312Packages.pylance
  • python312Packages.pylance.dist
  • python312Packages.pymanopt
  • python312Packages.pymanopt.dist
  • python312Packages.pymatgen
  • python312Packages.pymatgen.dist
  • python312Packages.pypasser
  • python312Packages.pypasser.dist
  • python312Packages.pyro-ppl
  • python312Packages.pyro-ppl.dist
  • python312Packages.pyseries
  • python312Packages.pyseries.dist
  • python312Packages.pytorch-bench
  • python312Packages.pytorch-bench.dist
  • python312Packages.pytorch-lightning
  • python312Packages.pytorch-lightning.dist
  • python312Packages.pytorch-memlab
  • python312Packages.pytorch-memlab.dist
  • python312Packages.pytorch-metric-learning
  • python312Packages.pytorch-metric-learning.dist
  • python312Packages.pytorch-msssim
  • python312Packages.pytorch-msssim.dist
  • python312Packages.pytorch3d
  • python312Packages.pytorch3d.dist
  • python312Packages.rerun-sdk
  • python312Packages.rerun-sdk.dist
  • python312Packages.resampy
  • python312Packages.resampy.dist
  • python312Packages.resize-right
  • python312Packages.resize-right.dist
  • python312Packages.retinaface
  • python312Packages.retinaface.dist
  • python312Packages.rlcard
  • python312Packages.rlcard.dist
  • python312Packages.roma
  • python312Packages.roma.dist
  • python312Packages.rotary-embedding-torch
  • python312Packages.rotary-embedding-torch.dist
  • python312Packages.safetensors
  • python312Packages.safetensors.dist
  • python312Packages.sagemaker-mlflow
  • python312Packages.sagemaker-mlflow.dist
  • python312Packages.scanpy
  • python312Packages.scanpy.dist
  • python312Packages.sentence-transformers
  • python312Packages.sentence-transformers.dist
  • python312Packages.sfepy
  • python312Packages.sfepy.dist
  • python312Packages.shap
  • python312Packages.shap.dist
  • python312Packages.shimmy
  • python312Packages.shimmy.dist
  • python312Packages.skorch
  • python312Packages.skorch.dist
  • python312Packages.skrl
  • python312Packages.skrl.dist
  • python312Packages.slicer
  • python312Packages.slicer.dist
  • python312Packages.smolagents
  • python312Packages.smolagents.dist
  • python312Packages.snorkel
  • python312Packages.snorkel.dist
  • python312Packages.spacy
  • python312Packages.spacy-curated-transformers
  • python312Packages.spacy-curated-transformers.dist
  • python312Packages.spacy-loggers
  • python312Packages.spacy-loggers.dist
  • python312Packages.spacy-lookups-data
  • python312Packages.spacy-lookups-data.dist
  • python312Packages.spacy-transformers
  • python312Packages.spacy-transformers.dist
  • python312Packages.spacy.dist
  • python312Packages.speechbrain
  • python312Packages.speechbrain.dist
  • python312Packages.speechrecognition
  • python312Packages.speechrecognition.dist
  • python312Packages.stable-baselines3
  • python312Packages.stable-baselines3.dist
  • python312Packages.stanza
  • python312Packages.stanza.dist
  • python312Packages.staticvectors
  • python312Packages.staticvectors.dist
  • python312Packages.stytra
  • python312Packages.stytra.dist
  • python312Packages.sumo
  • python312Packages.sumo.dist
  • python312Packages.syne-tune
  • python312Packages.syne-tune.dist
  • python312Packages.tables
  • python312Packages.tables.dist
  • python312Packages.tami4edgeapi
  • python312Packages.tami4edgeapi.dist
  • python312Packages.tensorboardx
  • python312Packages.tensorboardx.dist
  • python312Packages.tensordict
  • python312Packages.tensordict.dist
  • python312Packages.tensorflow-datasets
  • python312Packages.tensorflow-datasets.dist
  • python312Packages.test-tube
  • python312Packages.test-tube.dist
  • python312Packages.textacy
  • python312Packages.textacy.dist
  • python312Packages.textnets
  • python312Packages.textnets.dist
  • python312Packages.tianshou
  • python312Packages.tianshou.dist
  • python312Packages.timm
  • python312Packages.timm.dist
  • python312Packages.tinygrad
  • python312Packages.tinygrad.dist
  • python312Packages.torch (python312Packages.torchWithoutCuda, python312Packages.torchWithoutRocm)
  • python312Packages.torch-audiomentations
  • python312Packages.torch-audiomentations.dist
  • python312Packages.torch-geometric
  • python312Packages.torch-geometric.dist
  • python312Packages.torch-no-triton
  • python312Packages.torch-no-triton.cxxdev
  • python312Packages.torch-no-triton.dev
  • python312Packages.torch-no-triton.dist
  • python312Packages.torch-no-triton.lib
  • python312Packages.torch-pitch-shift
  • python312Packages.torch-pitch-shift.dist
  • python312Packages.torch-tb-profiler
  • python312Packages.torch-tb-profiler.dist
  • python312Packages.torch.cxxdev (python312Packages.torchWithoutCuda.cxxdev, python312Packages.torchWithoutRocm.cxxdev)
  • python312Packages.torch.dev (python312Packages.torchWithoutCuda.dev, python312Packages.torchWithoutRocm.dev)
  • python312Packages.torch.dist (python312Packages.torchWithoutCuda.dist, python312Packages.torchWithoutRocm.dist)
  • python312Packages.torch.lib (python312Packages.torchWithoutCuda.lib, python312Packages.torchWithoutRocm.lib)
  • python312Packages.torchWithCuda
  • python312Packages.torchWithCuda.cxxdev
  • python312Packages.torchWithCuda.dev
  • python312Packages.torchWithCuda.dist
  • python312Packages.torchWithCuda.lib
  • python312Packages.torchWithVulkan
  • python312Packages.torchWithVulkan.cxxdev
  • python312Packages.torchWithVulkan.dev
  • python312Packages.torchWithVulkan.dist
  • python312Packages.torchWithVulkan.lib
  • python312Packages.torchao
  • python312Packages.torchao.dist
  • python312Packages.torchaudio
  • python312Packages.torchaudio.dist
  • python312Packages.torchbench
  • python312Packages.torchbench.dist
  • python312Packages.torchcrepe
  • python312Packages.torchcrepe.dist
  • python312Packages.torchdiffeq
  • python312Packages.torchdiffeq.dist
  • python312Packages.torchinfo
  • python312Packages.torchinfo.dist
  • python312Packages.torchio
  • python312Packages.torchio.dist
  • python312Packages.torchlibrosa
  • python312Packages.torchlibrosa.dist
  • python312Packages.torchmetrics
  • python312Packages.torchmetrics.dist
  • python312Packages.torchprofile
  • python312Packages.torchprofile.dist
  • python312Packages.torchrl
  • python312Packages.torchrl.dist
  • python312Packages.torchsde
  • python312Packages.torchsde.dist
  • python312Packages.torchsnapshot
  • python312Packages.torchsnapshot.dist
  • python312Packages.torchsummary
  • python312Packages.torchsummary.dist
  • python312Packages.torchtnt
  • python312Packages.torchtnt-nightly
  • python312Packages.torchtnt-nightly.dist
  • python312Packages.torchtnt.dist
  • python312Packages.torchvision
  • python312Packages.torchvision.dist
  • python312Packages.trainer
  • python312Packages.trainer.dist
  • python312Packages.transformers
  • python312Packages.transformers.dist
  • python312Packages.translatehtml
  • python312Packages.translatehtml.dist
  • python312Packages.treescope
  • python312Packages.treescope.dist
  • python312Packages.trl
  • python312Packages.trl.dist
  • python312Packages.ttach
  • python312Packages.ttach.dist
  • python312Packages.txtai
  • python312Packages.txtai.dist
  • python312Packages.tyro
  • python312Packages.tyro.dist
  • python312Packages.ultralytics
  • python312Packages.ultralytics-thop
  • python312Packages.ultralytics-thop.dist
  • python312Packages.ultralytics.dist
  • python312Packages.unsloth
  • python312Packages.unsloth-zoo
  • python312Packages.unsloth-zoo.dist
  • python312Packages.unsloth.dist
  • python312Packages.unstructured-inference
  • python312Packages.unstructured-inference.dist
  • vllm (python312Packages.vllm)
  • vllm.dist (python312Packages.vllm.dist)
  • python312Packages.vqgan-jax
  • python312Packages.vqgan-jax.dist
  • python312Packages.wandb
  • python312Packages.wandb.dist
  • python312Packages.waymax
  • python312Packages.waymax.dist
  • python312Packages.webdataset
  • python312Packages.webdataset.dist
  • python312Packages.whisperx
  • python312Packages.whisperx.dist
  • python312Packages.x-transformers
  • python312Packages.x-transformers.dist
  • python312Packages.xarray-einstats
  • python312Packages.xarray-einstats.dist
  • python312Packages.xformers
  • python312Packages.xformers.dist
  • python312Packages.xgrammar
  • python312Packages.xgrammar.dist
  • python313Packages.accelerate
  • python313Packages.accelerate.dist
  • python313Packages.albumentations
  • python313Packages.albumentations.dist
  • python313Packages.anndata
  • python313Packages.anndata.dist
  • python313Packages.apptools
  • python313Packages.apptools.dist
  • python313Packages.apricot-select
  • python313Packages.apricot-select.dist
  • python313Packages.argos-translate-files
  • python313Packages.argos-translate-files.dist
  • python313Packages.argostranslate
  • python313Packages.argostranslate.dist
  • python313Packages.array-api-compat
  • python313Packages.array-api-compat.dist
  • python313Packages.asteroid-filterbanks
  • python313Packages.asteroid-filterbanks.dist
  • python313Packages.attacut
  • python313Packages.attacut.dist
  • python313Packages.augmax
  • python313Packages.augmax.dist
  • python313Packages.beetcamp
  • python313Packages.beetcamp.dist
  • python313Packages.bitsandbytes
  • python313Packages.bitsandbytes.dist
  • python313Packages.blosc2
  • python313Packages.blosc2.dist
  • python313Packages.botorch
  • python313Packages.botorch.dist
  • python313Packages.captum
  • python313Packages.captum.dist
  • python313Packages.clean-fid
  • python313Packages.clean-fid.dist
  • python313Packages.cleanvision
  • python313Packages.cleanvision.dist
  • python313Packages.clip
  • python313Packages.clip-anytorch
  • python313Packages.clip-anytorch.dist
  • python313Packages.clip.dist
  • python313Packages.colbert-ai
  • python313Packages.colbert-ai.dist
  • python313Packages.compressai
  • python313Packages.compressai.dist
  • python313Packages.compressed-tensors
  • python313Packages.compressed-tensors.dist
  • python313Packages.ctranslate2
  • python313Packages.ctranslate2.dist
  • python313Packages.curated-transformers
  • python313Packages.curated-transformers.dist
  • python313Packages.cut-cross-entropy
  • python313Packages.cut-cross-entropy.dist
  • python313Packages.dctorch
  • python313Packages.dctorch.dist
  • python313Packages.deepdish
  • python313Packages.deepdish.dist
  • python313Packages.deepsearch-toolkit
  • python313Packages.deepsearch-toolkit.dist
  • python313Packages.deepwave
  • python313Packages.deepwave.dist
  • python313Packages.detectron2
  • python313Packages.detectron2.dist
  • python313Packages.diffusers
  • python313Packages.diffusers.dist
  • python313Packages.docling-core
  • python313Packages.docling-core.dist
  • python313Packages.docling-ibm-models
  • python313Packages.docling-ibm-models.dist
  • python313Packages.docling-jobkit
  • python313Packages.docling-jobkit.dist
  • python313Packages.docling-parse
  • python313Packages.docling-parse.dist
  • python313Packages.effdet
  • python313Packages.effdet.dist
  • python313Packages.einops
  • python313Packages.einops.dist
  • python313Packages.encodec
  • python313Packages.encodec.dist
  • python313Packages.envisage
  • python313Packages.envisage.dist
  • python313Packages.experiment-utilities
  • python313Packages.experiment-utilities.dist
  • python313Packages.facenet-pytorch
  • python313Packages.facenet-pytorch.dist
  • python313Packages.fairscale
  • python313Packages.fairscale.dist
  • python313Packages.fastai
  • python313Packages.fastai.dist
  • python313Packages.faster-whisper
  • python313Packages.faster-whisper.dist
  • python313Packages.fastmri
  • python313Packages.fastmri.dist
  • python313Packages.fickling
  • python313Packages.fickling.dist
  • python313Packages.finetuning-scheduler
  • python313Packages.finetuning-scheduler.dist
  • python313Packages.flammkuchen
  • python313Packages.flammkuchen.dist
  • python313Packages.fvcore
  • python313Packages.fvcore.dist
  • python313Packages.geotorch
  • python313Packages.geotorch.dist
  • python313Packages.gliner
  • python313Packages.gliner.dist
  • python313Packages.gluonts
  • python313Packages.gluonts.dist
  • python313Packages.gpytorch
  • python313Packages.gpytorch.dist
  • python313Packages.grad-cam
  • python313Packages.grad-cam.dist
  • python313Packages.gradio
  • python313Packages.gradio-client
  • python313Packages.gradio-client.dist
  • python313Packages.gradio-pdf
  • python313Packages.gradio-pdf.dist
  • python313Packages.gradio.dist
  • python313Packages.graphtage
  • python313Packages.graphtage.dist
  • python313Packages.guidance
  • python313Packages.guidance.dist
  • python313Packages.h5io
  • python313Packages.h5io.dist
  • python313Packages.hyper-connections
  • python313Packages.hyper-connections.dist
  • python313Packages.ignite
  • python313Packages.ignite.dist
  • python313Packages.insightface
  • python313Packages.insightface.dist
  • python313Packages.invisible-watermark
  • python313Packages.invisible-watermark.dist
  • python313Packages.iopath
  • python313Packages.iopath.dist
  • python313Packages.julius
  • python313Packages.julius.dist
  • python313Packages.kokoro
  • python313Packages.kokoro.dist
  • python313Packages.lancedb
  • python313Packages.lancedb.dist
  • python313Packages.langchain-huggingface
  • python313Packages.langchain-huggingface.dist
  • python313Packages.layoutparser
  • python313Packages.layoutparser.dist
  • python313Packages.librosa
  • python313Packages.librosa.dist
  • python313Packages.lightning
  • python313Packages.lightning.dist
  • python313Packages.linear-operator
  • python313Packages.linear-operator.dist
  • python313Packages.lion-pytorch
  • python313Packages.lion-pytorch.dist
  • python313Packages.llama-cloud-services
  • python313Packages.llama-cloud-services.dist
  • python313Packages.llama-index
  • python313Packages.llama-index-cli
  • python313Packages.llama-index-cli.dist
  • python313Packages.llama-index-core
  • python313Packages.llama-index-core.dist
  • python313Packages.llama-index-embeddings-gemini
  • python313Packages.llama-index-embeddings-gemini.dist
  • python313Packages.llama-index-embeddings-google
  • python313Packages.llama-index-embeddings-google.dist
  • python313Packages.llama-index-embeddings-huggingface
  • python313Packages.llama-index-embeddings-huggingface.dist
  • python313Packages.llama-index-embeddings-ollama
  • python313Packages.llama-index-embeddings-ollama.dist
  • python313Packages.llama-index-embeddings-openai
  • python313Packages.llama-index-embeddings-openai.dist
  • python313Packages.llama-index-graph-stores-neo4j
  • python313Packages.llama-index-graph-stores-neo4j.dist
  • python313Packages.llama-index-graph-stores-neptune
  • python313Packages.llama-index-graph-stores-neptune.dist
  • python313Packages.llama-index-indices-managed-llama-cloud
  • python313Packages.llama-index-indices-managed-llama-cloud.dist
  • python313Packages.llama-index-legacy
  • python313Packages.llama-index-legacy.dist
  • python313Packages.llama-index-llms-ollama
  • python313Packages.llama-index-llms-ollama.dist
  • python313Packages.llama-index-llms-openai
  • python313Packages.llama-index-llms-openai-like
  • python313Packages.llama-index-llms-openai-like.dist
  • python313Packages.llama-index-llms-openai.dist
  • python313Packages.llama-index-multi-modal-llms-openai
  • python313Packages.llama-index-multi-modal-llms-openai.dist
  • python313Packages.llama-index-readers-database
  • python313Packages.llama-index-readers-database.dist
  • python313Packages.llama-index-readers-file
  • python313Packages.llama-index-readers-file.dist
  • python313Packages.llama-index-readers-json
  • python313Packages.llama-index-readers-json.dist
  • python313Packages.llama-index-readers-llama-parse
  • python313Packages.llama-index-readers-llama-parse.dist
  • python313Packages.llama-index-readers-s3
  • python313Packages.llama-index-readers-s3.dist
  • python313Packages.llama-index-readers-twitter
  • python313Packages.llama-index-readers-twitter.dist
  • python313Packages.llama-index-readers-txtai
  • python313Packages.llama-index-readers-txtai.dist
  • python313Packages.llama-index-readers-weather
  • python313Packages.llama-index-readers-weather.dist
  • python313Packages.llama-index-vector-stores-chroma
  • python313Packages.llama-index-vector-stores-chroma.dist
  • python313Packages.llama-index-vector-stores-google
  • python313Packages.llama-index-vector-stores-google.dist
  • python313Packages.llama-index-vector-stores-postgres
  • python313Packages.llama-index-vector-stores-postgres.dist
  • python313Packages.llama-index-vector-stores-qdrant
  • python313Packages.llama-index-vector-stores-qdrant.dist
  • python313Packages.llama-index.dist
  • python313Packages.llama-parse
  • python313Packages.llama-parse.dist
  • python313Packages.llguidance
  • python313Packages.llguidance.dist
  • python313Packages.llm-sentence-transformers
  • python313Packages.llm-sentence-transformers.dist
  • python313Packages.local-attention
  • python313Packages.local-attention.dist
  • python313Packages.manga-ocr
  • python313Packages.manga-ocr.dist
  • python313Packages.manifest-ml
  • python313Packages.manifest-ml.dist
  • python313Packages.markitdown
  • python313Packages.markitdown.dist
  • python313Packages.mdtraj
  • python313Packages.mdtraj.dist
  • python313Packages.mlcroissant
  • python313Packages.mlcroissant.dist
  • python313Packages.mlflow
  • python313Packages.mlflow.dist
  • python313Packages.mmcv
  • python313Packages.mmcv.dist
  • python313Packages.mmengine
  • python313Packages.mmengine.dist
  • python313Packages.mne
  • python313Packages.mne.dist
  • python313Packages.monai
  • python313Packages.monai.dist
  • python313Packages.monotonic-alignment-search
  • python313Packages.monotonic-alignment-search.dist
  • python313Packages.monty
  • python313Packages.monty.dist
  • python313Packages.nianet
  • python313Packages.nianet.dist
  • python313Packages.noisereduce
  • python313Packages.noisereduce.dist
  • python313Packages.open-clip-torch
  • python313Packages.open-clip-torch.dist
  • python313Packages.optimum
  • python313Packages.optimum.dist
  • python313Packages.optuna
  • python313Packages.optuna-dashboard
  • python313Packages.optuna-dashboard.dist
  • python313Packages.optuna.dist
  • python313Packages.orbax-checkpoint
  • python313Packages.orbax-checkpoint.dist
  • python313Packages.outlines-core
  • python313Packages.outlines-core.dist
  • python313Packages.pandantic
  • python313Packages.pandantic.dist
  • python313Packages.pandas-stubs
  • python313Packages.pandas-stubs.dist
  • python313Packages.pdfplumber
  • python313Packages.pdfplumber.dist
  • python313Packages.peacasso
  • python313Packages.peacasso.dist
  • python313Packages.peft
  • python313Packages.peft.dist
  • python313Packages.piano-transcription-inference
  • python313Packages.piano-transcription-inference.dist
  • python313Packages.pomegranate
  • python313Packages.pomegranate.dist
  • python313Packages.pyannote-audio
  • python313Packages.pyannote-audio.dist
  • python313Packages.pyannote-pipeline
  • python313Packages.pyannote-pipeline.dist
  • python313Packages.pylance
  • python313Packages.pylance.dist
  • python313Packages.pypasser
  • python313Packages.pypasser.dist
  • python313Packages.pyro-ppl
  • python313Packages.pyro-ppl.dist
  • python313Packages.pyseries
  • python313Packages.pyseries.dist
  • python313Packages.pytorch-bench
  • python313Packages.pytorch-bench.dist
  • python313Packages.pytorch-lightning
  • python313Packages.pytorch-lightning.dist
  • python313Packages.pytorch-memlab
  • python313Packages.pytorch-memlab.dist
  • python313Packages.pytorch-metric-learning
  • python313Packages.pytorch-metric-learning.dist
  • python313Packages.pytorch-msssim
  • python313Packages.pytorch-msssim.dist
  • python313Packages.pytorch3d
  • python313Packages.pytorch3d.dist
  • python313Packages.rerun-sdk
  • python313Packages.rerun-sdk.dist
  • python313Packages.resampy
  • python313Packages.resampy.dist
  • python313Packages.resize-right
  • python313Packages.resize-right.dist
  • python313Packages.rlcard
  • python313Packages.rlcard.dist
  • python313Packages.roma
  • python313Packages.roma.dist
  • python313Packages.rotary-embedding-torch
  • python313Packages.rotary-embedding-torch.dist
  • python313Packages.safetensors
  • python313Packages.safetensors.dist
  • python313Packages.sagemaker-mlflow
  • python313Packages.sagemaker-mlflow.dist
  • python313Packages.scanpy
  • python313Packages.scanpy.dist
  • python313Packages.sentence-transformers
  • python313Packages.sentence-transformers.dist
  • python313Packages.shap
  • python313Packages.shap.dist
  • python313Packages.slicer
  • python313Packages.slicer.dist
  • python313Packages.smolagents
  • python313Packages.smolagents.dist
  • python313Packages.snorkel
  • python313Packages.snorkel.dist
  • python313Packages.spacy
  • python313Packages.spacy-curated-transformers
  • python313Packages.spacy-curated-transformers.dist
  • python313Packages.spacy-loggers
  • python313Packages.spacy-loggers.dist
  • python313Packages.spacy-lookups-data
  • python313Packages.spacy-lookups-data.dist
  • python313Packages.spacy-transformers
  • python313Packages.spacy-transformers.dist
  • python313Packages.spacy.dist
  • python313Packages.speechbrain
  • python313Packages.speechbrain.dist
  • python313Packages.speechrecognition
  • python313Packages.speechrecognition.dist
  • python313Packages.stanza
  • python313Packages.stanza.dist
  • python313Packages.staticvectors
  • python313Packages.staticvectors.dist
  • python313Packages.stytra
  • python313Packages.stytra.dist
  • python313Packages.syne-tune
  • python313Packages.syne-tune.dist
  • python313Packages.tables
  • python313Packages.tables.dist
  • python313Packages.tami4edgeapi
  • python313Packages.tami4edgeapi.dist
  • python313Packages.tensorboardx
  • python313Packages.tensorboardx.dist
  • python313Packages.tensordict
  • python313Packages.tensordict.dist
  • python313Packages.textacy
  • python313Packages.textacy.dist
  • python313Packages.timm
  • python313Packages.timm.dist
  • python313Packages.tinygrad
  • python313Packages.tinygrad.dist
  • python313Packages.torch (python313Packages.torchWithoutCuda, python313Packages.torchWithoutRocm)
  • python313Packages.torch-audiomentations
  • python313Packages.torch-audiomentations.dist
  • python313Packages.torch-geometric
  • python313Packages.torch-geometric.dist
  • python313Packages.torch-no-triton
  • python313Packages.torch-no-triton.cxxdev
  • python313Packages.torch-no-triton.dev
  • python313Packages.torch-no-triton.dist
  • python313Packages.torch-no-triton.lib
  • python313Packages.torch-pitch-shift
  • python313Packages.torch-pitch-shift.dist
  • python313Packages.torch-tb-profiler
  • python313Packages.torch-tb-profiler.dist
  • python313Packages.torch.cxxdev (python313Packages.torchWithoutCuda.cxxdev, python313Packages.torchWithoutRocm.cxxdev)
  • python313Packages.torch.dev (python313Packages.torchWithoutCuda.dev, python313Packages.torchWithoutRocm.dev)
  • python313Packages.torch.dist (python313Packages.torchWithoutCuda.dist, python313Packages.torchWithoutRocm.dist)
  • python313Packages.torch.lib (python313Packages.torchWithoutCuda.lib, python313Packages.torchWithoutRocm.lib)
  • python313Packages.torchWithCuda
  • python313Packages.torchWithCuda.cxxdev
  • python313Packages.torchWithCuda.dev
  • python313Packages.torchWithCuda.dist
  • python313Packages.torchWithCuda.lib
  • python313Packages.torchWithRocm
  • python313Packages.torchWithRocm.cxxdev
  • python313Packages.torchWithRocm.dev
  • python313Packages.torchWithRocm.dist
  • python313Packages.torchWithRocm.lib
  • python313Packages.torchWithVulkan
  • python313Packages.torchWithVulkan.cxxdev
  • python313Packages.torchWithVulkan.dev
  • python313Packages.torchWithVulkan.dist
  • python313Packages.torchWithVulkan.lib
  • python313Packages.torchao
  • python313Packages.torchao.dist
  • python313Packages.torchaudio
  • python313Packages.torchaudio.dist
  • python313Packages.torchbench
  • python313Packages.torchbench.dist
  • python313Packages.torchcrepe
  • python313Packages.torchcrepe.dist
  • python313Packages.torchdiffeq
  • python313Packages.torchdiffeq.dist
  • python313Packages.torchinfo
  • python313Packages.torchinfo.dist
  • python313Packages.torchio
  • python313Packages.torchio.dist
  • python313Packages.torchlibrosa
  • python313Packages.torchlibrosa.dist
  • python313Packages.torchmetrics
  • python313Packages.torchmetrics.dist
  • python313Packages.torchprofile
  • python313Packages.torchprofile.dist
  • python313Packages.torchsde
  • python313Packages.torchsde.dist
  • python313Packages.torchsnapshot
  • python313Packages.torchsnapshot.dist
  • python313Packages.torchsummary
  • python313Packages.torchsummary.dist
  • python313Packages.torchtnt
  • python313Packages.torchtnt-nightly
  • python313Packages.torchtnt-nightly.dist
  • python313Packages.torchtnt.dist
  • python313Packages.torchvision
  • python313Packages.torchvision.dist
  • python313Packages.trainer
  • python313Packages.trainer.dist
  • python313Packages.transformers
  • python313Packages.transformers.dist
  • python313Packages.translatehtml
  • python313Packages.translatehtml.dist
  • python313Packages.treescope
  • python313Packages.treescope.dist
  • python313Packages.trl
  • python313Packages.trl.dist
  • python313Packages.ttach
  • python313Packages.ttach.dist
  • python313Packages.txtai
  • python313Packages.txtai.dist
  • python313Packages.ultralytics
  • python313Packages.ultralytics-thop
  • python313Packages.ultralytics-thop.dist
  • python313Packages.ultralytics.dist
  • python313Packages.unstructured-inference
  • python313Packages.unstructured-inference.dist
  • python313Packages.wandb
  • python313Packages.wandb.dist
  • python313Packages.webdataset
  • python313Packages.webdataset.dist
  • whisperx (python313Packages.whisperx)
  • whisperx.dist (python313Packages.whisperx.dist)
  • python313Packages.x-transformers
  • python313Packages.x-transformers.dist
  • python313Packages.xarray-einstats
  • python313Packages.xarray-einstats.dist
  • python313Packages.xformers
  • python313Packages.xformers.dist
  • python313Packages.xgrammar
  • python313Packages.xgrammar.dist
  • rclip
  • rclip.dist
  • rembg
  • rembg.dist
  • rlama
  • rocmPackages.mivisionx (rocmPackages.mivisionx-hip, rocmPackages_6.mivisionx, rocmPackages_6.mivisionx-hip)
  • rocmPackages.mivisionx-cpu (rocmPackages_6.mivisionx-cpu)
  • supergee
  • tocpdf
  • tocpdf.dist
  • unstructured-api
  • vectorcode
  • vectorcode.dist
  • vimPlugins.vectorcode-nvim
  • whisper-ctranslate2
  • whisper-ctranslate2.dist
  • wyoming-faster-whisper
  • wyoming-faster-whisper.dist

WARNING: Some logs were not included in this report: there were too many.

@GaetanLepage
Copy link
Contributor Author

nixpkgs-review result

Generated using nixpkgs-review.

Command: nixpkgs-review pr 431973 --package python3Packages.torchWithCuda --package python312Packages.torchWithCuda
Commit: ab2d7e40168939df18c44a68f3d59098a24ccb56


x86_64-linux

✅ 10 packages built:
  • python312Packages.torchWithCuda
  • python312Packages.torchWithCuda.cxxdev (python312Packages.torchWithCuda.cxxdev.cxxdev, python312Packages.torchWithCuda.cxxdev.dev, python312Packages.torchWithCuda.cxxdev.dist, python312Packages.torchWithCuda.cxxdev.lib)
  • python312Packages.torchWithCuda.dev (python312Packages.torchWithCuda.dev.cxxdev, python312Packages.torchWithCuda.dev.dev, python312Packages.torchWithCuda.dev.dist, python312Packages.torchWithCuda.dev.lib)
  • python312Packages.torchWithCuda.dist (python312Packages.torchWithCuda.dist.cxxdev, python312Packages.torchWithCuda.dist.dev, python312Packages.torchWithCuda.dist.dist, python312Packages.torchWithCuda.dist.lib)
  • python312Packages.torchWithCuda.lib (python312Packages.torchWithCuda.lib.cxxdev, python312Packages.torchWithCuda.lib.dev, python312Packages.torchWithCuda.lib.dist, python312Packages.torchWithCuda.lib.lib)
  • python3Packages.torchWithCuda
  • python3Packages.torchWithCuda.cxxdev (python3Packages.torchWithCuda.cxxdev.cxxdev, python3Packages.torchWithCuda.cxxdev.dev, python3Packages.torchWithCuda.cxxdev.dist, python3Packages.torchWithCuda.cxxdev.lib)
  • python3Packages.torchWithCuda.dev (python3Packages.torchWithCuda.dev.cxxdev, python3Packages.torchWithCuda.dev.dev, python3Packages.torchWithCuda.dev.dist, python3Packages.torchWithCuda.dev.lib)
  • python3Packages.torchWithCuda.dist (python3Packages.torchWithCuda.dist.cxxdev, python3Packages.torchWithCuda.dist.dev, python3Packages.torchWithCuda.dist.dist, python3Packages.torchWithCuda.dist.lib)
  • python3Packages.torchWithCuda.lib (python3Packages.torchWithCuda.lib.cxxdev, python3Packages.torchWithCuda.lib.dev, python3Packages.torchWithCuda.lib.dist, python3Packages.torchWithCuda.lib.lib)

@GaetanLepage GaetanLepage requested a review from NickCao August 30, 2025 23:13
Copy link
Member

@SuperSandro2000 SuperSandro2000 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@GaetanLepage
Copy link
Contributor Author

Thanks everyone for your help!

@GaetanLepage GaetanLepage merged commit e733b1e into NixOS:master Aug 31, 2025
48 of 51 checks passed
@GaetanLepage GaetanLepage deleted the update/python3Packages.torch branch August 31, 2025 15:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

6.topic: python Python is a high-level, general-purpose programming language. 10.rebuild-darwin: 501-1000 This PR causes many rebuilds on Darwin and should normally target the staging branches. 10.rebuild-darwin: 501+ This PR causes many rebuilds on Darwin and should normally target the staging branches. 10.rebuild-linux: 501-1000 This PR causes many rebuilds on Linux and should normally target the staging branches. 10.rebuild-linux: 501+ This PR causes many rebuilds on Linux and should normally target the staging branches. 11.by: package-maintainer This PR was created by a maintainer of all the package it changes.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

8 participants