Kevin Black commited on
Commit ·
9b2fe72
1
Parent(s): d6ca625
Pin PyTorch and fix tests
Browse files- pyproject.toml +1 -1
- src/openpi/training/data_loader.py +1 -1
- uv.lock +133 -224
pyproject.toml
CHANGED
|
@@ -26,7 +26,7 @@ dependencies = [
|
|
| 26 |
"orbax-checkpoint==0.11.13",
|
| 27 |
"pillow>=11.0.0",
|
| 28 |
"sentencepiece>=0.2.0",
|
| 29 |
-
"torch
|
| 30 |
"tqdm-loggable>=0.2",
|
| 31 |
"typing-extensions>=4.12.2",
|
| 32 |
"tyro>=0.9.5",
|
|
|
|
| 26 |
"orbax-checkpoint==0.11.13",
|
| 27 |
"pillow>=11.0.0",
|
| 28 |
"sentencepiece>=0.2.0",
|
| 29 |
+
"torch==2.7.1",
|
| 30 |
"tqdm-loggable>=0.2",
|
| 31 |
"typing-extensions>=4.12.2",
|
| 32 |
"tyro>=0.9.5",
|
src/openpi/training/data_loader.py
CHANGED
|
@@ -227,7 +227,7 @@ def create_data_loader(
|
|
| 227 |
shuffle: bool = False,
|
| 228 |
num_batches: int | None = None,
|
| 229 |
skip_norm_stats: bool = False,
|
| 230 |
-
framework: Literal["jax", "pytorch"],
|
| 231 |
) -> DataLoader[tuple[_model.Observation, _model.Actions]]:
|
| 232 |
"""Create a data loader for training.
|
| 233 |
|
|
|
|
| 227 |
shuffle: bool = False,
|
| 228 |
num_batches: int | None = None,
|
| 229 |
skip_norm_stats: bool = False,
|
| 230 |
+
framework: Literal["jax", "pytorch"] = "jax",
|
| 231 |
) -> DataLoader[tuple[_model.Observation, _model.Actions]]:
|
| 232 |
"""Create a data loader for training.
|
| 233 |
|
uv.lock
CHANGED
|
@@ -1,5 +1,4 @@
|
|
| 1 |
version = 1
|
| 2 |
-
revision = 1
|
| 3 |
requires-python = ">=3.11"
|
| 4 |
resolution-markers = [
|
| 5 |
"python_full_version >= '3.13' and sys_platform == 'darwin'",
|
|
@@ -1771,33 +1770,24 @@ wheels = [
|
|
| 1771 |
|
| 1772 |
[package.optional-dependencies]
|
| 1773 |
with-cuda = [
|
| 1774 |
-
{ name = "nvidia-cublas-cu12", version = "12.6.4.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'linux'" },
|
| 1775 |
-
{ name = "nvidia-cublas-cu12", version = "12.8.4.1", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'aarch64' and sys_platform == 'linux'" },
|
| 1776 |
{ name = "nvidia-cublas-cu12", version = "12.9.0.13", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1777 |
-
{ name = "nvidia-cuda-cupti-cu12", version = "12.6.80", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'linux'" },
|
| 1778 |
-
{ name = "nvidia-cuda-cupti-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'aarch64' and sys_platform == 'linux'" },
|
| 1779 |
{ name = "nvidia-cuda-cupti-cu12", version = "12.9.19", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1780 |
{ name = "nvidia-cuda-nvcc-cu12" },
|
| 1781 |
-
{ name = "nvidia-cuda-runtime-cu12", version = "12.6.77", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'linux'" },
|
| 1782 |
-
{ name = "nvidia-cuda-runtime-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'aarch64' and sys_platform == 'linux'" },
|
| 1783 |
{ name = "nvidia-cuda-runtime-cu12", version = "12.9.37", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1784 |
-
{ name = "nvidia-cudnn-cu12", version = "9.5.1.17", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'linux'" },
|
| 1785 |
{ name = "nvidia-cudnn-cu12", version = "9.10.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1786 |
-
{ name = "nvidia-
|
| 1787 |
-
{ name = "nvidia-cufft-cu12", version = "11.3.0.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'linux'" },
|
| 1788 |
-
{ name = "nvidia-cufft-cu12", version = "11.3.3.83", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'aarch64' and sys_platform == 'linux'" },
|
| 1789 |
{ name = "nvidia-cufft-cu12", version = "11.4.0.6", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1790 |
-
{ name = "nvidia-cusolver-cu12", version = "11.7.1.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'linux'" },
|
| 1791 |
-
{ name = "nvidia-cusolver-cu12", version = "11.7.3.90", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'aarch64' and sys_platform == 'linux'" },
|
| 1792 |
{ name = "nvidia-cusolver-cu12", version = "11.7.4.40", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1793 |
-
{ name = "nvidia-cusparse-cu12", version = "12.5.4.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'linux'" },
|
| 1794 |
-
{ name = "nvidia-cusparse-cu12", version = "12.5.8.93", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'aarch64' and sys_platform == 'linux'" },
|
| 1795 |
{ name = "nvidia-cusparse-cu12", version = "12.5.9.5", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1796 |
-
{ name = "nvidia-nccl-cu12", version = "2.26.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'linux'" },
|
| 1797 |
{ name = "nvidia-nccl-cu12", version = "2.26.5", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1798 |
-
{ name = "nvidia-
|
| 1799 |
-
{ name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'linux'" },
|
| 1800 |
-
{ name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'aarch64' and sys_platform == 'linux'" },
|
| 1801 |
{ name = "nvidia-nvjitlink-cu12", version = "12.9.41", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1802 |
]
|
| 1803 |
|
|
@@ -2617,31 +2607,22 @@ name = "nvidia-cublas-cu12"
|
|
| 2617 |
version = "12.6.4.1"
|
| 2618 |
source = { registry = "https://pypi.org/simple" }
|
| 2619 |
resolution-markers = [
|
|
|
|
| 2620 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2621 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
|
|
|
| 2622 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2623 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
|
|
|
| 2624 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2625 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 2626 |
]
|
| 2627 |
wheels = [
|
|
|
|
|
|
|
| 2628 |
{ url = "https://files.pythonhosted.org/packages/84/f7/985e9bdbe3e0ac9298fcc8cfa51a392862a46a0ffaccbbd56939b62a9c83/nvidia_cublas_cu12-12.6.4.1-py3-none-win_amd64.whl", hash = "sha256:9e4fa264f4d8a4eb0cdbd34beadc029f453b3bafae02401e999cf3d5a5af75f8", size = 434535301 },
|
| 2629 |
]
|
| 2630 |
|
| 2631 |
-
[[package]]
|
| 2632 |
-
name = "nvidia-cublas-cu12"
|
| 2633 |
-
version = "12.8.4.1"
|
| 2634 |
-
source = { registry = "https://pypi.org/simple" }
|
| 2635 |
-
resolution-markers = [
|
| 2636 |
-
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2637 |
-
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2638 |
-
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2639 |
-
]
|
| 2640 |
-
wheels = [
|
| 2641 |
-
{ url = "https://files.pythonhosted.org/packages/29/99/db44d685f0e257ff0e213ade1964fc459b4a690a73293220e98feb3307cf/nvidia_cublas_cu12-12.8.4.1-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:b86f6dd8935884615a0683b663891d43781b819ac4f2ba2b0c9604676af346d0", size = 590537124 },
|
| 2642 |
-
{ url = "https://files.pythonhosted.org/packages/dc/61/e24b560ab2e2eaeb3c839129175fb330dfcfc29e5203196e5541a4c44682/nvidia_cublas_cu12-12.8.4.1-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:8ac4e771d5a348c551b2a426eda6193c19aa630236b418086020df5ba9667142", size = 594346921 },
|
| 2643 |
-
]
|
| 2644 |
-
|
| 2645 |
[[package]]
|
| 2646 |
name = "nvidia-cublas-cu12"
|
| 2647 |
version = "12.9.0.13"
|
|
@@ -2664,31 +2645,24 @@ name = "nvidia-cuda-cupti-cu12"
|
|
| 2664 |
version = "12.6.80"
|
| 2665 |
source = { registry = "https://pypi.org/simple" }
|
| 2666 |
resolution-markers = [
|
|
|
|
| 2667 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2668 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
|
|
|
| 2669 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2670 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
|
|
|
| 2671 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2672 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 2673 |
]
|
| 2674 |
wheels = [
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2675 |
{ url = "https://files.pythonhosted.org/packages/1c/81/7796f096afaf726796b1b648f3bc80cafc61fe7f77f44a483c89e6c5ef34/nvidia_cuda_cupti_cu12-12.6.80-py3-none-win_amd64.whl", hash = "sha256:bbe6ae76e83ce5251b56e8c8e61a964f757175682bbad058b170b136266ab00a", size = 5724175 },
|
| 2676 |
]
|
| 2677 |
|
| 2678 |
-
[[package]]
|
| 2679 |
-
name = "nvidia-cuda-cupti-cu12"
|
| 2680 |
-
version = "12.8.90"
|
| 2681 |
-
source = { registry = "https://pypi.org/simple" }
|
| 2682 |
-
resolution-markers = [
|
| 2683 |
-
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2684 |
-
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2685 |
-
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2686 |
-
]
|
| 2687 |
-
wheels = [
|
| 2688 |
-
{ url = "https://files.pythonhosted.org/packages/d5/1f/b3bd73445e5cb342727fd24fe1f7b748f690b460acadc27ea22f904502c8/nvidia_cuda_cupti_cu12-12.8.90-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:4412396548808ddfed3f17a467b104ba7751e6b58678a4b840675c56d21cf7ed", size = 9533318 },
|
| 2689 |
-
{ url = "https://files.pythonhosted.org/packages/f8/02/2adcaa145158bf1a8295d83591d22e4103dbfd821bcaf6f3f53151ca4ffa/nvidia_cuda_cupti_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ea0cb07ebda26bb9b29ba82cda34849e73c166c18162d3913575b0c9db9a6182", size = 10248621 },
|
| 2690 |
-
]
|
| 2691 |
-
|
| 2692 |
[[package]]
|
| 2693 |
name = "nvidia-cuda-cupti-cu12"
|
| 2694 |
version = "12.9.19"
|
|
@@ -2718,10 +2692,10 @@ wheels = [
|
|
| 2718 |
|
| 2719 |
[[package]]
|
| 2720 |
name = "nvidia-cuda-nvrtc-cu12"
|
| 2721 |
-
version = "12.
|
| 2722 |
source = { registry = "https://pypi.org/simple" }
|
| 2723 |
wheels = [
|
| 2724 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2725 |
]
|
| 2726 |
|
| 2727 |
[[package]]
|
|
@@ -2729,31 +2703,24 @@ name = "nvidia-cuda-runtime-cu12"
|
|
| 2729 |
version = "12.6.77"
|
| 2730 |
source = { registry = "https://pypi.org/simple" }
|
| 2731 |
resolution-markers = [
|
|
|
|
| 2732 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2733 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
|
|
|
| 2734 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2735 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
|
|
|
| 2736 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2737 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 2738 |
]
|
| 2739 |
wheels = [
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2740 |
{ url = "https://files.pythonhosted.org/packages/fa/76/4c80fa138333cc975743fd0687a745fccb30d167f906f13c1c7f9a85e5ea/nvidia_cuda_runtime_cu12-12.6.77-py3-none-win_amd64.whl", hash = "sha256:86c58044c824bf3c173c49a2dbc7a6c8b53cb4e4dca50068be0bf64e9dab3f7f", size = 891773 },
|
| 2741 |
]
|
| 2742 |
|
| 2743 |
-
[[package]]
|
| 2744 |
-
name = "nvidia-cuda-runtime-cu12"
|
| 2745 |
-
version = "12.8.90"
|
| 2746 |
-
source = { registry = "https://pypi.org/simple" }
|
| 2747 |
-
resolution-markers = [
|
| 2748 |
-
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2749 |
-
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2750 |
-
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2751 |
-
]
|
| 2752 |
-
wheels = [
|
| 2753 |
-
{ url = "https://files.pythonhosted.org/packages/7c/75/f865a3b236e4647605ea34cc450900854ba123834a5f1598e160b9530c3a/nvidia_cuda_runtime_cu12-12.8.90-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:52bf7bbee900262ffefe5e9d5a2a69a30d97e2bc5bb6cc866688caa976966e3d", size = 965265 },
|
| 2754 |
-
{ url = "https://files.pythonhosted.org/packages/0d/9b/a997b638fcd068ad6e4d53b8551a7d30fe8b404d6f1804abf1df69838932/nvidia_cuda_runtime_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:adade8dcbd0edf427b7204d480d6066d33902cab2a4707dcfc48a2d0fd44ab90", size = 954765 },
|
| 2755 |
-
]
|
| 2756 |
-
|
| 2757 |
[[package]]
|
| 2758 |
name = "nvidia-cuda-runtime-cu12"
|
| 2759 |
version = "12.9.37"
|
|
@@ -2776,17 +2743,22 @@ name = "nvidia-cudnn-cu12"
|
|
| 2776 |
version = "9.5.1.17"
|
| 2777 |
source = { registry = "https://pypi.org/simple" }
|
| 2778 |
resolution-markers = [
|
|
|
|
| 2779 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2780 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
|
|
|
| 2781 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2782 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
|
|
|
| 2783 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2784 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 2785 |
]
|
| 2786 |
dependencies = [
|
| 2787 |
-
{ name = "nvidia-cublas-cu12", version = "12.6.4.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'linux'" },
|
| 2788 |
]
|
| 2789 |
wheels = [
|
|
|
|
|
|
|
| 2790 |
{ url = "https://files.pythonhosted.org/packages/b6/b2/3f60d15f037fa5419d9d7f788b100ef33ea913ae5315c87ca6d6fa606c35/nvidia_cudnn_cu12-9.5.1.17-py3-none-win_amd64.whl", hash = "sha256:d7af0f8a4f3b4b9dbb3122f2ef553b45694ed9c384d5a75bab197b8eefb79ab8", size = 565440743 },
|
| 2791 |
]
|
| 2792 |
|
|
@@ -2810,59 +2782,32 @@ wheels = [
|
|
| 2810 |
{ url = "https://files.pythonhosted.org/packages/18/ec/79464a7371a028d1f443b8516b55cb2f70bb91bd3b2f2a831d707c003ccf/nvidia_cudnn_cu12-9.10.1.4-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:df73c4dab84df2c54f0a40e6427cde26e8d80feeffef02d749ee42d7da3c8204", size = 706752133 },
|
| 2811 |
]
|
| 2812 |
|
| 2813 |
-
[[package]]
|
| 2814 |
-
name = "nvidia-cudnn-cu12"
|
| 2815 |
-
version = "9.10.2.21"
|
| 2816 |
-
source = { registry = "https://pypi.org/simple" }
|
| 2817 |
-
resolution-markers = [
|
| 2818 |
-
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2819 |
-
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2820 |
-
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2821 |
-
]
|
| 2822 |
-
dependencies = [
|
| 2823 |
-
{ name = "nvidia-cublas-cu12", version = "12.8.4.1", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'aarch64' and sys_platform == 'linux'" },
|
| 2824 |
-
]
|
| 2825 |
-
wheels = [
|
| 2826 |
-
{ url = "https://files.pythonhosted.org/packages/fa/41/e79269ce215c857c935fd86bcfe91a451a584dfc27f1e068f568b9ad1ab7/nvidia_cudnn_cu12-9.10.2.21-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:c9132cc3f8958447b4910a1720036d9eff5928cc3179b0a51fb6d167c6cc87d8", size = 705026878 },
|
| 2827 |
-
{ url = "https://files.pythonhosted.org/packages/ba/51/e123d997aa098c61d029f76663dedbfb9bc8dcf8c60cbd6adbe42f76d049/nvidia_cudnn_cu12-9.10.2.21-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:949452be657fa16687d0930933f032835951ef0892b37d2d53824d1a84dc97a8", size = 706758467 },
|
| 2828 |
-
]
|
| 2829 |
-
|
| 2830 |
[[package]]
|
| 2831 |
name = "nvidia-cufft-cu12"
|
| 2832 |
version = "11.3.0.4"
|
| 2833 |
source = { registry = "https://pypi.org/simple" }
|
| 2834 |
resolution-markers = [
|
|
|
|
| 2835 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2836 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
|
|
|
| 2837 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2838 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
|
|
|
| 2839 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2840 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 2841 |
]
|
| 2842 |
dependencies = [
|
| 2843 |
-
{ name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'linux'" },
|
| 2844 |
]
|
| 2845 |
wheels = [
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2846 |
{ url = "https://files.pythonhosted.org/packages/b4/38/36fd800cec8f6e89b7c1576edaaf8076e69ec631644cdbc1b5f2e2b5a9df/nvidia_cufft_cu12-11.3.0.4-py3-none-win_amd64.whl", hash = "sha256:6048ebddfb90d09d2707efb1fd78d4e3a77cb3ae4dc60e19aab6be0ece2ae464", size = 199356881 },
|
| 2847 |
]
|
| 2848 |
|
| 2849 |
-
[[package]]
|
| 2850 |
-
name = "nvidia-cufft-cu12"
|
| 2851 |
-
version = "11.3.3.83"
|
| 2852 |
-
source = { registry = "https://pypi.org/simple" }
|
| 2853 |
-
resolution-markers = [
|
| 2854 |
-
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2855 |
-
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2856 |
-
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2857 |
-
]
|
| 2858 |
-
dependencies = [
|
| 2859 |
-
{ name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'aarch64' and sys_platform == 'linux'" },
|
| 2860 |
-
]
|
| 2861 |
-
wheels = [
|
| 2862 |
-
{ url = "https://files.pythonhosted.org/packages/60/bc/7771846d3a0272026c416fbb7e5f4c1f146d6d80704534d0b187dd6f4800/nvidia_cufft_cu12-11.3.3.83-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:848ef7224d6305cdb2a4df928759dca7b1201874787083b6e7550dd6765ce69a", size = 193109211 },
|
| 2863 |
-
{ url = "https://files.pythonhosted.org/packages/1f/13/ee4e00f30e676b66ae65b4f08cb5bcbb8392c03f54f2d5413ea99a5d1c80/nvidia_cufft_cu12-11.3.3.83-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4d2dd21ec0b88cf61b62e6b43564355e5222e4a3fb394cac0db101f2dd0d4f74", size = 193118695 },
|
| 2864 |
-
]
|
| 2865 |
-
|
| 2866 |
[[package]]
|
| 2867 |
name = "nvidia-cufft-cu12"
|
| 2868 |
version = "11.4.0.6"
|
|
@@ -2885,18 +2830,19 @@ wheels = [
|
|
| 2885 |
|
| 2886 |
[[package]]
|
| 2887 |
name = "nvidia-cufile-cu12"
|
| 2888 |
-
version = "1.
|
| 2889 |
source = { registry = "https://pypi.org/simple" }
|
| 2890 |
wheels = [
|
| 2891 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2892 |
]
|
| 2893 |
|
| 2894 |
[[package]]
|
| 2895 |
name = "nvidia-curand-cu12"
|
| 2896 |
-
version = "10.3.
|
| 2897 |
source = { registry = "https://pypi.org/simple" }
|
| 2898 |
wheels = [
|
| 2899 |
-
{ url = "https://files.pythonhosted.org/packages/
|
|
|
|
| 2900 |
]
|
| 2901 |
|
| 2902 |
[[package]]
|
|
@@ -2904,41 +2850,29 @@ name = "nvidia-cusolver-cu12"
|
|
| 2904 |
version = "11.7.1.2"
|
| 2905 |
source = { registry = "https://pypi.org/simple" }
|
| 2906 |
resolution-markers = [
|
|
|
|
| 2907 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2908 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
|
|
|
| 2909 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2910 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
|
|
|
| 2911 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2912 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 2913 |
]
|
| 2914 |
dependencies = [
|
| 2915 |
-
{ name = "nvidia-cublas-cu12", version = "12.6.4.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'linux'" },
|
| 2916 |
-
{ name = "nvidia-cusparse-cu12", version = "12.5.4.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'linux'" },
|
| 2917 |
-
{ name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'linux'" },
|
| 2918 |
]
|
| 2919 |
wheels = [
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2920 |
{ url = "https://files.pythonhosted.org/packages/d4/53/fff50a0808df7113d77e3bbc7c2b7eaed6f57d5eb80fbe93ead2aea1e09a/nvidia_cusolver_cu12-11.7.1.2-py3-none-win_amd64.whl", hash = "sha256:6813f9d8073f555444a8705f3ab0296d3e1cb37a16d694c5fc8b862a0d8706d7", size = 149287877 },
|
| 2921 |
]
|
| 2922 |
|
| 2923 |
-
[[package]]
|
| 2924 |
-
name = "nvidia-cusolver-cu12"
|
| 2925 |
-
version = "11.7.3.90"
|
| 2926 |
-
source = { registry = "https://pypi.org/simple" }
|
| 2927 |
-
resolution-markers = [
|
| 2928 |
-
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2929 |
-
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2930 |
-
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2931 |
-
]
|
| 2932 |
-
dependencies = [
|
| 2933 |
-
{ name = "nvidia-cublas-cu12", version = "12.8.4.1", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'aarch64' and sys_platform == 'linux'" },
|
| 2934 |
-
{ name = "nvidia-cusparse-cu12", version = "12.5.8.93", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'aarch64' and sys_platform == 'linux'" },
|
| 2935 |
-
{ name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'aarch64' and sys_platform == 'linux'" },
|
| 2936 |
-
]
|
| 2937 |
-
wheels = [
|
| 2938 |
-
{ url = "https://files.pythonhosted.org/packages/c8/32/f7cd6ce8a7690544d084ea21c26e910a97e077c9b7f07bf5de623ee19981/nvidia_cusolver_cu12-11.7.3.90-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:db9ed69dbef9715071232caa9b69c52ac7de3a95773c2db65bdba85916e4e5c0", size = 267229841 },
|
| 2939 |
-
{ url = "https://files.pythonhosted.org/packages/85/48/9a13d2975803e8cf2777d5ed57b87a0b6ca2cc795f9a4f59796a910bfb80/nvidia_cusolver_cu12-11.7.3.90-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:4376c11ad263152bd50ea295c05370360776f8c3427b30991df774f9fb26c450", size = 267506905 },
|
| 2940 |
-
]
|
| 2941 |
-
|
| 2942 |
[[package]]
|
| 2943 |
name = "nvidia-cusolver-cu12"
|
| 2944 |
version = "11.7.4.40"
|
|
@@ -2966,37 +2900,27 @@ name = "nvidia-cusparse-cu12"
|
|
| 2966 |
version = "12.5.4.2"
|
| 2967 |
source = { registry = "https://pypi.org/simple" }
|
| 2968 |
resolution-markers = [
|
|
|
|
| 2969 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2970 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
|
|
|
| 2971 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2972 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
|
|
|
| 2973 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2974 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 2975 |
]
|
| 2976 |
dependencies = [
|
| 2977 |
-
{ name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin' and sys_platform != 'linux'" },
|
| 2978 |
]
|
| 2979 |
wheels = [
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2980 |
{ url = "https://files.pythonhosted.org/packages/45/ef/876ad8e4260e1128e6d4aac803d9d51baf3791ebdb4a9b8d9b8db032b4b0/nvidia_cusparse_cu12-12.5.4.2-py3-none-win_amd64.whl", hash = "sha256:4acb8c08855a26d737398cba8fb6f8f5045d93f82612b4cfd84645a2332ccf20", size = 213712630 },
|
| 2981 |
]
|
| 2982 |
|
| 2983 |
-
[[package]]
|
| 2984 |
-
name = "nvidia-cusparse-cu12"
|
| 2985 |
-
version = "12.5.8.93"
|
| 2986 |
-
source = { registry = "https://pypi.org/simple" }
|
| 2987 |
-
resolution-markers = [
|
| 2988 |
-
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2989 |
-
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2990 |
-
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2991 |
-
]
|
| 2992 |
-
dependencies = [
|
| 2993 |
-
{ name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'aarch64' and sys_platform == 'linux'" },
|
| 2994 |
-
]
|
| 2995 |
-
wheels = [
|
| 2996 |
-
{ url = "https://files.pythonhosted.org/packages/bc/f7/cd777c4109681367721b00a106f491e0d0d15cfa1fd59672ce580ce42a97/nvidia_cusparse_cu12-12.5.8.93-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:9b6c161cb130be1a07a27ea6923df8141f3c295852f4b260c65f18f3e0a091dc", size = 288117129 },
|
| 2997 |
-
{ url = "https://files.pythonhosted.org/packages/c2/f5/e1854cb2f2bcd4280c44736c93550cc300ff4b8c95ebe370d0aa7d2b473d/nvidia_cusparse_cu12-12.5.8.93-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1ec05d76bbbd8b61b06a80e1eaf8cf4959c3d4ce8e711b65ebd0443bb0ebb13b", size = 288216466 },
|
| 2998 |
-
]
|
| 2999 |
-
|
| 3000 |
[[package]]
|
| 3001 |
name = "nvidia-cusparse-cu12"
|
| 3002 |
version = "12.5.9.5"
|
|
@@ -3019,10 +2943,10 @@ wheels = [
|
|
| 3019 |
|
| 3020 |
[[package]]
|
| 3021 |
name = "nvidia-cusparselt-cu12"
|
| 3022 |
-
version = "0.
|
| 3023 |
source = { registry = "https://pypi.org/simple" }
|
| 3024 |
wheels = [
|
| 3025 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 3026 |
]
|
| 3027 |
|
| 3028 |
[[package]]
|
|
@@ -3039,13 +2963,20 @@ name = "nvidia-nccl-cu12"
|
|
| 3039 |
version = "2.26.2"
|
| 3040 |
source = { registry = "https://pypi.org/simple" }
|
| 3041 |
resolution-markers = [
|
|
|
|
| 3042 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 3043 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
|
|
|
| 3044 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 3045 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
|
|
|
| 3046 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 3047 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 3048 |
]
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3049 |
|
| 3050 |
[[package]]
|
| 3051 |
name = "nvidia-nccl-cu12"
|
|
@@ -3064,50 +2995,27 @@ wheels = [
|
|
| 3064 |
{ url = "https://files.pythonhosted.org/packages/48/fb/ec4ac065d9b0d56f72eaf1d9b0df601e33da28197b32ca351dc05b342611/nvidia_nccl_cu12-2.26.5-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ea5ed3e053c735f16809bee7111deac62ac35b10128a8c102960a0462ce16cbe", size = 318069637 },
|
| 3065 |
]
|
| 3066 |
|
| 3067 |
-
[[package]]
|
| 3068 |
-
name = "nvidia-nccl-cu12"
|
| 3069 |
-
version = "2.27.3"
|
| 3070 |
-
source = { registry = "https://pypi.org/simple" }
|
| 3071 |
-
resolution-markers = [
|
| 3072 |
-
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 3073 |
-
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 3074 |
-
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 3075 |
-
]
|
| 3076 |
-
wheels = [
|
| 3077 |
-
{ url = "https://files.pythonhosted.org/packages/4b/7b/8354b784cf73b0ba51e566b4baba3ddd44fe8288a3d39ef1e06cd5417226/nvidia_nccl_cu12-2.27.3-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:9ddf1a245abc36c550870f26d537a9b6087fb2e2e3d6e0ef03374c6fd19d984f", size = 322397768 },
|
| 3078 |
-
{ url = "https://files.pythonhosted.org/packages/5c/5b/4e4fff7bad39adf89f735f2bc87248c81db71205b62bcc0d5ca5b606b3c3/nvidia_nccl_cu12-2.27.3-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:adf27ccf4238253e0b826bce3ff5fa532d65fc42322c8bfdfaf28024c0fbe039", size = 322364134 },
|
| 3079 |
-
]
|
| 3080 |
-
|
| 3081 |
[[package]]
|
| 3082 |
name = "nvidia-nvjitlink-cu12"
|
| 3083 |
version = "12.6.85"
|
| 3084 |
source = { registry = "https://pypi.org/simple" }
|
| 3085 |
resolution-markers = [
|
|
|
|
| 3086 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 3087 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
|
|
|
| 3088 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 3089 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
|
|
|
| 3090 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 3091 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 3092 |
]
|
| 3093 |
wheels = [
|
|
|
|
|
|
|
| 3094 |
{ url = "https://files.pythonhosted.org/packages/89/76/93c1467b1387387440a4d25102d86b7794535449b689f8e2dc22c1c8ff7f/nvidia_nvjitlink_cu12-12.6.85-py3-none-win_amd64.whl", hash = "sha256:e61120e52ed675747825cdd16febc6a0730537451d867ee58bee3853b1b13d1c", size = 161908572 },
|
| 3095 |
]
|
| 3096 |
|
| 3097 |
-
[[package]]
|
| 3098 |
-
name = "nvidia-nvjitlink-cu12"
|
| 3099 |
-
version = "12.8.93"
|
| 3100 |
-
source = { registry = "https://pypi.org/simple" }
|
| 3101 |
-
resolution-markers = [
|
| 3102 |
-
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 3103 |
-
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 3104 |
-
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 3105 |
-
]
|
| 3106 |
-
wheels = [
|
| 3107 |
-
{ url = "https://files.pythonhosted.org/packages/f6/74/86a07f1d0f42998ca31312f998bd3b9a7eff7f52378f4f270c8679c77fb9/nvidia_nvjitlink_cu12-12.8.93-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:81ff63371a7ebd6e6451970684f916be2eab07321b73c9d244dc2b4da7f73b88", size = 39254836 },
|
| 3108 |
-
{ url = "https://files.pythonhosted.org/packages/2a/a2/8cee5da30d13430e87bf99bb33455d2724d0a4a9cb5d7926d80ccb96d008/nvidia_nvjitlink_cu12-12.8.93-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:adccd7161ace7261e01bb91e44e88da350895c270d23f744f0820c818b7229e7", size = 38386204 },
|
| 3109 |
-
]
|
| 3110 |
-
|
| 3111 |
[[package]]
|
| 3112 |
name = "nvidia-nvjitlink-cu12"
|
| 3113 |
version = "12.9.41"
|
|
@@ -3127,10 +3035,11 @@ wheels = [
|
|
| 3127 |
|
| 3128 |
[[package]]
|
| 3129 |
name = "nvidia-nvtx-cu12"
|
| 3130 |
-
version = "12.
|
| 3131 |
source = { registry = "https://pypi.org/simple" }
|
| 3132 |
wheels = [
|
| 3133 |
-
{ url = "https://files.pythonhosted.org/packages/
|
|
|
|
| 3134 |
]
|
| 3135 |
|
| 3136 |
[[package]]
|
|
@@ -3270,7 +3179,7 @@ requires-dist = [
|
|
| 3270 |
{ name = "polars", specifier = ">=1.30.0" },
|
| 3271 |
{ name = "rich", specifier = ">=14.0.0" },
|
| 3272 |
{ name = "sentencepiece", specifier = ">=0.2.0" },
|
| 3273 |
-
{ name = "torch", specifier = "
|
| 3274 |
{ name = "tqdm-loggable", specifier = ">=0.2" },
|
| 3275 |
{ name = "transformers", specifier = "==4.53.2" },
|
| 3276 |
{ name = "treescope", specifier = ">=0.1.7" },
|
|
@@ -4942,26 +4851,26 @@ wheels = [
|
|
| 4942 |
|
| 4943 |
[[package]]
|
| 4944 |
name = "torch"
|
| 4945 |
-
version = "2.
|
| 4946 |
source = { registry = "https://pypi.org/simple" }
|
| 4947 |
dependencies = [
|
| 4948 |
{ name = "filelock" },
|
| 4949 |
{ name = "fsspec" },
|
| 4950 |
{ name = "jinja2" },
|
| 4951 |
{ name = "networkx" },
|
| 4952 |
-
{ name = "nvidia-cublas-cu12", version = "12.
|
| 4953 |
-
{ name = "nvidia-cuda-cupti-cu12", version = "12.
|
| 4954 |
{ name = "nvidia-cuda-nvrtc-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4955 |
-
{ name = "nvidia-cuda-runtime-cu12", version = "12.
|
| 4956 |
-
{ name = "nvidia-cudnn-cu12", version = "9.
|
| 4957 |
-
{ name = "nvidia-cufft-cu12", version = "11.3.
|
| 4958 |
{ name = "nvidia-cufile-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4959 |
{ name = "nvidia-curand-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4960 |
-
{ name = "nvidia-cusolver-cu12", version = "11.7.
|
| 4961 |
-
{ name = "nvidia-cusparse-cu12", version = "12.5.
|
| 4962 |
{ name = "nvidia-cusparselt-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4963 |
-
{ name = "nvidia-nccl-cu12", version = "2.
|
| 4964 |
-
{ name = "nvidia-nvjitlink-cu12", version = "12.
|
| 4965 |
{ name = "nvidia-nvtx-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4966 |
{ name = "setuptools", marker = "python_full_version >= '3.12'" },
|
| 4967 |
{ name = "sympy" },
|
|
@@ -4969,22 +4878,22 @@ dependencies = [
|
|
| 4969 |
{ name = "typing-extensions" },
|
| 4970 |
]
|
| 4971 |
wheels = [
|
| 4972 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4973 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4974 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4975 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4976 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4977 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4978 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4979 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4980 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4981 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4982 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4983 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4984 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4985 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4986 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4987 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 4988 |
]
|
| 4989 |
|
| 4990 |
[[package]]
|
|
@@ -5004,7 +4913,7 @@ wheels = [
|
|
| 5004 |
|
| 5005 |
[[package]]
|
| 5006 |
name = "torchvision"
|
| 5007 |
-
version = "0.
|
| 5008 |
source = { registry = "https://pypi.org/simple" }
|
| 5009 |
dependencies = [
|
| 5010 |
{ name = "numpy" },
|
|
@@ -5012,22 +4921,22 @@ dependencies = [
|
|
| 5012 |
{ name = "torch" },
|
| 5013 |
]
|
| 5014 |
wheels = [
|
| 5015 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5016 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5017 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5018 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5019 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5020 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5021 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5022 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5023 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5024 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5025 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5026 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5027 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5028 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5029 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5030 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5031 |
]
|
| 5032 |
|
| 5033 |
[[package]]
|
|
@@ -5129,16 +5038,16 @@ wheels = [
|
|
| 5129 |
|
| 5130 |
[[package]]
|
| 5131 |
name = "triton"
|
| 5132 |
-
version = "3.
|
| 5133 |
source = { registry = "https://pypi.org/simple" }
|
| 5134 |
dependencies = [
|
| 5135 |
{ name = "setuptools", marker = "platform_machine != 'aarch64' and sys_platform == 'linux'" },
|
| 5136 |
]
|
| 5137 |
wheels = [
|
| 5138 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5139 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5140 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5141 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 5142 |
]
|
| 5143 |
|
| 5144 |
[[package]]
|
|
|
|
| 1 |
version = 1
|
|
|
|
| 2 |
requires-python = ">=3.11"
|
| 3 |
resolution-markers = [
|
| 4 |
"python_full_version >= '3.13' and sys_platform == 'darwin'",
|
|
|
|
| 1770 |
|
| 1771 |
[package.optional-dependencies]
|
| 1772 |
with-cuda = [
|
| 1773 |
+
{ name = "nvidia-cublas-cu12", version = "12.6.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
|
|
|
| 1774 |
{ name = "nvidia-cublas-cu12", version = "12.9.0.13", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1775 |
+
{ name = "nvidia-cuda-cupti-cu12", version = "12.6.80", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
|
|
|
| 1776 |
{ name = "nvidia-cuda-cupti-cu12", version = "12.9.19", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1777 |
{ name = "nvidia-cuda-nvcc-cu12" },
|
| 1778 |
+
{ name = "nvidia-cuda-runtime-cu12", version = "12.6.77", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
|
|
|
| 1779 |
{ name = "nvidia-cuda-runtime-cu12", version = "12.9.37", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1780 |
+
{ name = "nvidia-cudnn-cu12", version = "9.5.1.17", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
| 1781 |
{ name = "nvidia-cudnn-cu12", version = "9.10.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1782 |
+
{ name = "nvidia-cufft-cu12", version = "11.3.0.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
|
|
|
|
|
|
| 1783 |
{ name = "nvidia-cufft-cu12", version = "11.4.0.6", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1784 |
+
{ name = "nvidia-cusolver-cu12", version = "11.7.1.2", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
|
|
|
| 1785 |
{ name = "nvidia-cusolver-cu12", version = "11.7.4.40", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1786 |
+
{ name = "nvidia-cusparse-cu12", version = "12.5.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
|
|
|
| 1787 |
{ name = "nvidia-cusparse-cu12", version = "12.5.9.5", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1788 |
+
{ name = "nvidia-nccl-cu12", version = "2.26.2", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
| 1789 |
{ name = "nvidia-nccl-cu12", version = "2.26.5", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1790 |
+
{ name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
|
|
|
|
|
|
| 1791 |
{ name = "nvidia-nvjitlink-cu12", version = "12.9.41", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
|
| 1792 |
]
|
| 1793 |
|
|
|
|
| 2607 |
version = "12.6.4.1"
|
| 2608 |
source = { registry = "https://pypi.org/simple" }
|
| 2609 |
resolution-markers = [
|
| 2610 |
+
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2611 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2612 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
| 2613 |
+
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2614 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2615 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
| 2616 |
+
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2617 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2618 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 2619 |
]
|
| 2620 |
wheels = [
|
| 2621 |
+
{ url = "https://files.pythonhosted.org/packages/af/eb/ff4b8c503fa1f1796679dce648854d58751982426e4e4b37d6fce49d259c/nvidia_cublas_cu12-12.6.4.1-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:08ed2686e9875d01b58e3cb379c6896df8e76c75e0d4a7f7dace3d7b6d9ef8eb", size = 393138322 },
|
| 2622 |
+
{ url = "https://files.pythonhosted.org/packages/97/0d/f1f0cadbf69d5b9ef2e4f744c9466cb0a850741d08350736dfdb4aa89569/nvidia_cublas_cu12-12.6.4.1-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:235f728d6e2a409eddf1df58d5b0921cf80cfa9e72b9f2775ccb7b4a87984668", size = 390794615 },
|
| 2623 |
{ url = "https://files.pythonhosted.org/packages/84/f7/985e9bdbe3e0ac9298fcc8cfa51a392862a46a0ffaccbbd56939b62a9c83/nvidia_cublas_cu12-12.6.4.1-py3-none-win_amd64.whl", hash = "sha256:9e4fa264f4d8a4eb0cdbd34beadc029f453b3bafae02401e999cf3d5a5af75f8", size = 434535301 },
|
| 2624 |
]
|
| 2625 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2626 |
[[package]]
|
| 2627 |
name = "nvidia-cublas-cu12"
|
| 2628 |
version = "12.9.0.13"
|
|
|
|
| 2645 |
version = "12.6.80"
|
| 2646 |
source = { registry = "https://pypi.org/simple" }
|
| 2647 |
resolution-markers = [
|
| 2648 |
+
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2649 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2650 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
| 2651 |
+
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2652 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2653 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
| 2654 |
+
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2655 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2656 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 2657 |
]
|
| 2658 |
wheels = [
|
| 2659 |
+
{ url = "https://files.pythonhosted.org/packages/e6/8b/2f6230cb715646c3a9425636e513227ce5c93c4d65823a734f4bb86d43c3/nvidia_cuda_cupti_cu12-12.6.80-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:166ee35a3ff1587f2490364f90eeeb8da06cd867bd5b701bf7f9a02b78bc63fc", size = 8236764 },
|
| 2660 |
+
{ url = "https://files.pythonhosted.org/packages/25/0f/acb326ac8fd26e13c799e0b4f3b2751543e1834f04d62e729485872198d4/nvidia_cuda_cupti_cu12-12.6.80-py3-none-manylinux2014_aarch64.whl", hash = "sha256:358b4a1d35370353d52e12f0a7d1769fc01ff74a191689d3870b2123156184c4", size = 8236756 },
|
| 2661 |
+
{ url = "https://files.pythonhosted.org/packages/49/60/7b6497946d74bcf1de852a21824d63baad12cd417db4195fc1bfe59db953/nvidia_cuda_cupti_cu12-12.6.80-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6768bad6cab4f19e8292125e5f1ac8aa7d1718704012a0e3272a6f61c4bce132", size = 8917980 },
|
| 2662 |
+
{ url = "https://files.pythonhosted.org/packages/a5/24/120ee57b218d9952c379d1e026c4479c9ece9997a4fb46303611ee48f038/nvidia_cuda_cupti_cu12-12.6.80-py3-none-manylinux2014_x86_64.whl", hash = "sha256:a3eff6cdfcc6a4c35db968a06fcadb061cbc7d6dde548609a941ff8701b98b73", size = 8917972 },
|
| 2663 |
{ url = "https://files.pythonhosted.org/packages/1c/81/7796f096afaf726796b1b648f3bc80cafc61fe7f77f44a483c89e6c5ef34/nvidia_cuda_cupti_cu12-12.6.80-py3-none-win_amd64.whl", hash = "sha256:bbe6ae76e83ce5251b56e8c8e61a964f757175682bbad058b170b136266ab00a", size = 5724175 },
|
| 2664 |
]
|
| 2665 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2666 |
[[package]]
|
| 2667 |
name = "nvidia-cuda-cupti-cu12"
|
| 2668 |
version = "12.9.19"
|
|
|
|
| 2692 |
|
| 2693 |
[[package]]
|
| 2694 |
name = "nvidia-cuda-nvrtc-cu12"
|
| 2695 |
+
version = "12.6.77"
|
| 2696 |
source = { registry = "https://pypi.org/simple" }
|
| 2697 |
wheels = [
|
| 2698 |
+
{ url = "https://files.pythonhosted.org/packages/75/2e/46030320b5a80661e88039f59060d1790298b4718944a65a7f2aeda3d9e9/nvidia_cuda_nvrtc_cu12-12.6.77-py3-none-manylinux2014_x86_64.whl", hash = "sha256:35b0cc6ee3a9636d5409133e79273ce1f3fd087abb0532d2d2e8fff1fe9efc53", size = 23650380 },
|
| 2699 |
]
|
| 2700 |
|
| 2701 |
[[package]]
|
|
|
|
| 2703 |
version = "12.6.77"
|
| 2704 |
source = { registry = "https://pypi.org/simple" }
|
| 2705 |
resolution-markers = [
|
| 2706 |
+
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2707 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2708 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
| 2709 |
+
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2710 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2711 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
| 2712 |
+
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2713 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2714 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 2715 |
]
|
| 2716 |
wheels = [
|
| 2717 |
+
{ url = "https://files.pythonhosted.org/packages/8f/ea/590b2ac00d772a8abd1c387a92b46486d2679ca6622fd25c18ff76265663/nvidia_cuda_runtime_cu12-12.6.77-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:6116fad3e049e04791c0256a9778c16237837c08b27ed8c8401e2e45de8d60cd", size = 908052 },
|
| 2718 |
+
{ url = "https://files.pythonhosted.org/packages/b7/3d/159023799677126e20c8fd580cca09eeb28d5c5a624adc7f793b9aa8bbfa/nvidia_cuda_runtime_cu12-12.6.77-py3-none-manylinux2014_aarch64.whl", hash = "sha256:d461264ecb429c84c8879a7153499ddc7b19b5f8d84c204307491989a365588e", size = 908040 },
|
| 2719 |
+
{ url = "https://files.pythonhosted.org/packages/e1/23/e717c5ac26d26cf39a27fbc076240fad2e3b817e5889d671b67f4f9f49c5/nvidia_cuda_runtime_cu12-12.6.77-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ba3b56a4f896141e25e19ab287cd71e52a6a0f4b29d0d31609f60e3b4d5219b7", size = 897690 },
|
| 2720 |
+
{ url = "https://files.pythonhosted.org/packages/f0/62/65c05e161eeddbafeca24dc461f47de550d9fa8a7e04eb213e32b55cfd99/nvidia_cuda_runtime_cu12-12.6.77-py3-none-manylinux2014_x86_64.whl", hash = "sha256:a84d15d5e1da416dd4774cb42edf5e954a3e60cc945698dc1d5be02321c44dc8", size = 897678 },
|
| 2721 |
{ url = "https://files.pythonhosted.org/packages/fa/76/4c80fa138333cc975743fd0687a745fccb30d167f906f13c1c7f9a85e5ea/nvidia_cuda_runtime_cu12-12.6.77-py3-none-win_amd64.whl", hash = "sha256:86c58044c824bf3c173c49a2dbc7a6c8b53cb4e4dca50068be0bf64e9dab3f7f", size = 891773 },
|
| 2722 |
]
|
| 2723 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2724 |
[[package]]
|
| 2725 |
name = "nvidia-cuda-runtime-cu12"
|
| 2726 |
version = "12.9.37"
|
|
|
|
| 2743 |
version = "9.5.1.17"
|
| 2744 |
source = { registry = "https://pypi.org/simple" }
|
| 2745 |
resolution-markers = [
|
| 2746 |
+
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2747 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2748 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
| 2749 |
+
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2750 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2751 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
| 2752 |
+
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2753 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2754 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 2755 |
]
|
| 2756 |
dependencies = [
|
| 2757 |
+
{ name = "nvidia-cublas-cu12", version = "12.6.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
| 2758 |
]
|
| 2759 |
wheels = [
|
| 2760 |
+
{ url = "https://files.pythonhosted.org/packages/99/93/a201a12d3ec1caa8c6ac34c1c2f9eeb696b886f0c36ff23c638b46603bd0/nvidia_cudnn_cu12-9.5.1.17-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:9fd4584468533c61873e5fda8ca41bac3a38bcb2d12350830c69b0a96a7e4def", size = 570523509 },
|
| 2761 |
+
{ url = "https://files.pythonhosted.org/packages/2a/78/4535c9c7f859a64781e43c969a3a7e84c54634e319a996d43ef32ce46f83/nvidia_cudnn_cu12-9.5.1.17-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:30ac3869f6db17d170e0e556dd6cc5eee02647abc31ca856634d5a40f82c15b2", size = 570988386 },
|
| 2762 |
{ url = "https://files.pythonhosted.org/packages/b6/b2/3f60d15f037fa5419d9d7f788b100ef33ea913ae5315c87ca6d6fa606c35/nvidia_cudnn_cu12-9.5.1.17-py3-none-win_amd64.whl", hash = "sha256:d7af0f8a4f3b4b9dbb3122f2ef553b45694ed9c384d5a75bab197b8eefb79ab8", size = 565440743 },
|
| 2763 |
]
|
| 2764 |
|
|
|
|
| 2782 |
{ url = "https://files.pythonhosted.org/packages/18/ec/79464a7371a028d1f443b8516b55cb2f70bb91bd3b2f2a831d707c003ccf/nvidia_cudnn_cu12-9.10.1.4-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:df73c4dab84df2c54f0a40e6427cde26e8d80feeffef02d749ee42d7da3c8204", size = 706752133 },
|
| 2783 |
]
|
| 2784 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2785 |
[[package]]
|
| 2786 |
name = "nvidia-cufft-cu12"
|
| 2787 |
version = "11.3.0.4"
|
| 2788 |
source = { registry = "https://pypi.org/simple" }
|
| 2789 |
resolution-markers = [
|
| 2790 |
+
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2791 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2792 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
| 2793 |
+
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2794 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2795 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
| 2796 |
+
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2797 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2798 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 2799 |
]
|
| 2800 |
dependencies = [
|
| 2801 |
+
{ name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
| 2802 |
]
|
| 2803 |
wheels = [
|
| 2804 |
+
{ url = "https://files.pythonhosted.org/packages/1f/37/c50d2b2f2c07e146776389e3080f4faf70bcc4fa6e19d65bb54ca174ebc3/nvidia_cufft_cu12-11.3.0.4-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d16079550df460376455cba121db6564089176d9bac9e4f360493ca4741b22a6", size = 200164144 },
|
| 2805 |
+
{ url = "https://files.pythonhosted.org/packages/ce/f5/188566814b7339e893f8d210d3a5332352b1409815908dad6a363dcceac1/nvidia_cufft_cu12-11.3.0.4-py3-none-manylinux2014_aarch64.whl", hash = "sha256:8510990de9f96c803a051822618d42bf6cb8f069ff3f48d93a8486efdacb48fb", size = 200164135 },
|
| 2806 |
+
{ url = "https://files.pythonhosted.org/packages/8f/16/73727675941ab8e6ffd86ca3a4b7b47065edcca7a997920b831f8147c99d/nvidia_cufft_cu12-11.3.0.4-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ccba62eb9cef5559abd5e0d54ceed2d9934030f51163df018532142a8ec533e5", size = 200221632 },
|
| 2807 |
+
{ url = "https://files.pythonhosted.org/packages/60/de/99ec247a07ea40c969d904fc14f3a356b3e2a704121675b75c366b694ee1/nvidia_cufft_cu12-11.3.0.4-py3-none-manylinux2014_x86_64.whl", hash = "sha256:768160ac89f6f7b459bee747e8d175dbf53619cfe74b2a5636264163138013ca", size = 200221622 },
|
| 2808 |
{ url = "https://files.pythonhosted.org/packages/b4/38/36fd800cec8f6e89b7c1576edaaf8076e69ec631644cdbc1b5f2e2b5a9df/nvidia_cufft_cu12-11.3.0.4-py3-none-win_amd64.whl", hash = "sha256:6048ebddfb90d09d2707efb1fd78d4e3a77cb3ae4dc60e19aab6be0ece2ae464", size = 199356881 },
|
| 2809 |
]
|
| 2810 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2811 |
[[package]]
|
| 2812 |
name = "nvidia-cufft-cu12"
|
| 2813 |
version = "11.4.0.6"
|
|
|
|
| 2830 |
|
| 2831 |
[[package]]
|
| 2832 |
name = "nvidia-cufile-cu12"
|
| 2833 |
+
version = "1.11.1.6"
|
| 2834 |
source = { registry = "https://pypi.org/simple" }
|
| 2835 |
wheels = [
|
| 2836 |
+
{ url = "https://files.pythonhosted.org/packages/b2/66/cc9876340ac68ae71b15c743ddb13f8b30d5244af344ec8322b449e35426/nvidia_cufile_cu12-1.11.1.6-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:cc23469d1c7e52ce6c1d55253273d32c565dd22068647f3aa59b3c6b005bf159", size = 1142103 },
|
| 2837 |
]
|
| 2838 |
|
| 2839 |
[[package]]
|
| 2840 |
name = "nvidia-curand-cu12"
|
| 2841 |
+
version = "10.3.7.77"
|
| 2842 |
source = { registry = "https://pypi.org/simple" }
|
| 2843 |
wheels = [
|
| 2844 |
+
{ url = "https://files.pythonhosted.org/packages/73/1b/44a01c4e70933637c93e6e1a8063d1e998b50213a6b65ac5a9169c47e98e/nvidia_curand_cu12-10.3.7.77-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a42cd1344297f70b9e39a1e4f467a4e1c10f1da54ff7a85c12197f6c652c8bdf", size = 56279010 },
|
| 2845 |
+
{ url = "https://files.pythonhosted.org/packages/4a/aa/2c7ff0b5ee02eaef890c0ce7d4f74bc30901871c5e45dee1ae6d0083cd80/nvidia_curand_cu12-10.3.7.77-py3-none-manylinux2014_x86_64.whl", hash = "sha256:99f1a32f1ac2bd134897fc7a203f779303261268a65762a623bf30cc9fe79117", size = 56279000 },
|
| 2846 |
]
|
| 2847 |
|
| 2848 |
[[package]]
|
|
|
|
| 2850 |
version = "11.7.1.2"
|
| 2851 |
source = { registry = "https://pypi.org/simple" }
|
| 2852 |
resolution-markers = [
|
| 2853 |
+
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2854 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2855 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
| 2856 |
+
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2857 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2858 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
| 2859 |
+
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2860 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2861 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 2862 |
]
|
| 2863 |
dependencies = [
|
| 2864 |
+
{ name = "nvidia-cublas-cu12", version = "12.6.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
| 2865 |
+
{ name = "nvidia-cusparse-cu12", version = "12.5.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
| 2866 |
+
{ name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
| 2867 |
]
|
| 2868 |
wheels = [
|
| 2869 |
+
{ url = "https://files.pythonhosted.org/packages/93/17/dbe1aa865e4fdc7b6d4d0dd308fdd5aaab60f939abfc0ea1954eac4fb113/nvidia_cusolver_cu12-11.7.1.2-py3-none-manylinux2014_aarch64.whl", hash = "sha256:0ce237ef60acde1efc457335a2ddadfd7610b892d94efee7b776c64bb1cac9e0", size = 157833628 },
|
| 2870 |
+
{ url = "https://files.pythonhosted.org/packages/f0/6e/c2cf12c9ff8b872e92b4a5740701e51ff17689c4d726fca91875b07f655d/nvidia_cusolver_cu12-11.7.1.2-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e9e49843a7707e42022babb9bcfa33c29857a93b88020c4e4434656a655b698c", size = 158229790 },
|
| 2871 |
+
{ url = "https://files.pythonhosted.org/packages/9f/81/baba53585da791d043c10084cf9553e074548408e04ae884cfe9193bd484/nvidia_cusolver_cu12-11.7.1.2-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6cf28f17f64107a0c4d7802be5ff5537b2130bfc112f25d5a30df227058ca0e6", size = 158229780 },
|
| 2872 |
+
{ url = "https://files.pythonhosted.org/packages/7c/5f/07d0ba3b7f19be5a5ec32a8679fc9384cfd9fc6c869825e93be9f28d6690/nvidia_cusolver_cu12-11.7.1.2-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:dbbe4fc38ec1289c7e5230e16248365e375c3673c9c8bac5796e2e20db07f56e", size = 157833630 },
|
| 2873 |
{ url = "https://files.pythonhosted.org/packages/d4/53/fff50a0808df7113d77e3bbc7c2b7eaed6f57d5eb80fbe93ead2aea1e09a/nvidia_cusolver_cu12-11.7.1.2-py3-none-win_amd64.whl", hash = "sha256:6813f9d8073f555444a8705f3ab0296d3e1cb37a16d694c5fc8b862a0d8706d7", size = 149287877 },
|
| 2874 |
]
|
| 2875 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2876 |
[[package]]
|
| 2877 |
name = "nvidia-cusolver-cu12"
|
| 2878 |
version = "11.7.4.40"
|
|
|
|
| 2900 |
version = "12.5.4.2"
|
| 2901 |
source = { registry = "https://pypi.org/simple" }
|
| 2902 |
resolution-markers = [
|
| 2903 |
+
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2904 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2905 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
| 2906 |
+
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2907 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2908 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
| 2909 |
+
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2910 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2911 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 2912 |
]
|
| 2913 |
dependencies = [
|
| 2914 |
+
{ name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
| 2915 |
]
|
| 2916 |
wheels = [
|
| 2917 |
+
{ url = "https://files.pythonhosted.org/packages/eb/eb/6681efd0aa7df96b4f8067b3ce7246833dd36830bb4cec8896182773db7d/nvidia_cusparse_cu12-12.5.4.2-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d25b62fb18751758fe3c93a4a08eff08effedfe4edf1c6bb5afd0890fe88f887", size = 216451147 },
|
| 2918 |
+
{ url = "https://files.pythonhosted.org/packages/d3/56/3af21e43014eb40134dea004e8d0f1ef19d9596a39e4d497d5a7de01669f/nvidia_cusparse_cu12-12.5.4.2-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7aa32fa5470cf754f72d1116c7cbc300b4e638d3ae5304cfa4a638a5b87161b1", size = 216451135 },
|
| 2919 |
+
{ url = "https://files.pythonhosted.org/packages/06/1e/b8b7c2f4099a37b96af5c9bb158632ea9e5d9d27d7391d7eb8fc45236674/nvidia_cusparse_cu12-12.5.4.2-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7556d9eca156e18184b94947ade0fba5bb47d69cec46bf8660fd2c71a4b48b73", size = 216561367 },
|
| 2920 |
+
{ url = "https://files.pythonhosted.org/packages/43/ac/64c4316ba163e8217a99680c7605f779accffc6a4bcd0c778c12948d3707/nvidia_cusparse_cu12-12.5.4.2-py3-none-manylinux2014_x86_64.whl", hash = "sha256:23749a6571191a215cb74d1cdbff4a86e7b19f1200c071b3fcf844a5bea23a2f", size = 216561357 },
|
| 2921 |
{ url = "https://files.pythonhosted.org/packages/45/ef/876ad8e4260e1128e6d4aac803d9d51baf3791ebdb4a9b8d9b8db032b4b0/nvidia_cusparse_cu12-12.5.4.2-py3-none-win_amd64.whl", hash = "sha256:4acb8c08855a26d737398cba8fb6f8f5045d93f82612b4cfd84645a2332ccf20", size = 213712630 },
|
| 2922 |
]
|
| 2923 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2924 |
[[package]]
|
| 2925 |
name = "nvidia-cusparse-cu12"
|
| 2926 |
version = "12.5.9.5"
|
|
|
|
| 2943 |
|
| 2944 |
[[package]]
|
| 2945 |
name = "nvidia-cusparselt-cu12"
|
| 2946 |
+
version = "0.6.3"
|
| 2947 |
source = { registry = "https://pypi.org/simple" }
|
| 2948 |
wheels = [
|
| 2949 |
+
{ url = "https://files.pythonhosted.org/packages/3b/9a/72ef35b399b0e183bc2e8f6f558036922d453c4d8237dab26c666a04244b/nvidia_cusparselt_cu12-0.6.3-py3-none-manylinux2014_x86_64.whl", hash = "sha256:e5c8a26c36445dd2e6812f1177978a24e2d37cacce7e090f297a688d1ec44f46", size = 156785796 },
|
| 2950 |
]
|
| 2951 |
|
| 2952 |
[[package]]
|
|
|
|
| 2963 |
version = "2.26.2"
|
| 2964 |
source = { registry = "https://pypi.org/simple" }
|
| 2965 |
resolution-markers = [
|
| 2966 |
+
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2967 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2968 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
| 2969 |
+
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2970 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2971 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
| 2972 |
+
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 2973 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 2974 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 2975 |
]
|
| 2976 |
+
wheels = [
|
| 2977 |
+
{ url = "https://files.pythonhosted.org/packages/69/5b/ca2f213f637305633814ae8c36b153220e40a07ea001966dcd87391f3acb/nvidia_nccl_cu12-2.26.2-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5c196e95e832ad30fbbb50381eb3cbd1fadd5675e587a548563993609af19522", size = 291671495 },
|
| 2978 |
+
{ url = "https://files.pythonhosted.org/packages/67/ca/f42388aed0fddd64ade7493dbba36e1f534d4e6fdbdd355c6a90030ae028/nvidia_nccl_cu12-2.26.2-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:694cf3879a206553cc9d7dbda76b13efaf610fdb70a50cba303de1b0d1530ac6", size = 201319755 },
|
| 2979 |
+
]
|
| 2980 |
|
| 2981 |
[[package]]
|
| 2982 |
name = "nvidia-nccl-cu12"
|
|
|
|
| 2995 |
{ url = "https://files.pythonhosted.org/packages/48/fb/ec4ac065d9b0d56f72eaf1d9b0df601e33da28197b32ca351dc05b342611/nvidia_nccl_cu12-2.26.5-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ea5ed3e053c735f16809bee7111deac62ac35b10128a8c102960a0462ce16cbe", size = 318069637 },
|
| 2996 |
]
|
| 2997 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2998 |
[[package]]
|
| 2999 |
name = "nvidia-nvjitlink-cu12"
|
| 3000 |
version = "12.6.85"
|
| 3001 |
source = { registry = "https://pypi.org/simple" }
|
| 3002 |
resolution-markers = [
|
| 3003 |
+
"python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 3004 |
"python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 3005 |
"python_full_version >= '3.13' and sys_platform == 'emscripten'",
|
| 3006 |
+
"python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 3007 |
"python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 3008 |
"python_full_version == '3.12.*' and sys_platform == 'emscripten'",
|
| 3009 |
+
"python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'",
|
| 3010 |
"python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux'",
|
| 3011 |
"python_full_version < '3.12' and sys_platform == 'emscripten'",
|
| 3012 |
]
|
| 3013 |
wheels = [
|
| 3014 |
+
{ url = "https://files.pythonhosted.org/packages/9d/d7/c5383e47c7e9bf1c99d5bd2a8c935af2b6d705ad831a7ec5c97db4d82f4f/nvidia_nvjitlink_cu12-12.6.85-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:eedc36df9e88b682efe4309aa16b5b4e78c2407eac59e8c10a6a47535164369a", size = 19744971 },
|
| 3015 |
+
{ url = "https://files.pythonhosted.org/packages/31/db/dc71113d441f208cdfe7ae10d4983884e13f464a6252450693365e166dcf/nvidia_nvjitlink_cu12-12.6.85-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cf4eaa7d4b6b543ffd69d6abfb11efdeb2db48270d94dfd3a452c24150829e41", size = 19270338 },
|
| 3016 |
{ url = "https://files.pythonhosted.org/packages/89/76/93c1467b1387387440a4d25102d86b7794535449b689f8e2dc22c1c8ff7f/nvidia_nvjitlink_cu12-12.6.85-py3-none-win_amd64.whl", hash = "sha256:e61120e52ed675747825cdd16febc6a0730537451d867ee58bee3853b1b13d1c", size = 161908572 },
|
| 3017 |
]
|
| 3018 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3019 |
[[package]]
|
| 3020 |
name = "nvidia-nvjitlink-cu12"
|
| 3021 |
version = "12.9.41"
|
|
|
|
| 3035 |
|
| 3036 |
[[package]]
|
| 3037 |
name = "nvidia-nvtx-cu12"
|
| 3038 |
+
version = "12.6.77"
|
| 3039 |
source = { registry = "https://pypi.org/simple" }
|
| 3040 |
wheels = [
|
| 3041 |
+
{ url = "https://files.pythonhosted.org/packages/56/9a/fff8376f8e3d084cd1530e1ef7b879bb7d6d265620c95c1b322725c694f4/nvidia_nvtx_cu12-12.6.77-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b90bed3df379fa79afbd21be8e04a0314336b8ae16768b58f2d34cb1d04cd7d2", size = 89276 },
|
| 3042 |
+
{ url = "https://files.pythonhosted.org/packages/9e/4e/0d0c945463719429b7bd21dece907ad0bde437a2ff12b9b12fee94722ab0/nvidia_nvtx_cu12-12.6.77-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6574241a3ec5fdc9334353ab8c479fe75841dbe8f4532a8fc97ce63503330ba1", size = 89265 },
|
| 3043 |
]
|
| 3044 |
|
| 3045 |
[[package]]
|
|
|
|
| 3179 |
{ name = "polars", specifier = ">=1.30.0" },
|
| 3180 |
{ name = "rich", specifier = ">=14.0.0" },
|
| 3181 |
{ name = "sentencepiece", specifier = ">=0.2.0" },
|
| 3182 |
+
{ name = "torch", specifier = "==2.7.1" },
|
| 3183 |
{ name = "tqdm-loggable", specifier = ">=0.2" },
|
| 3184 |
{ name = "transformers", specifier = "==4.53.2" },
|
| 3185 |
{ name = "treescope", specifier = ">=0.1.7" },
|
|
|
|
| 4851 |
|
| 4852 |
[[package]]
|
| 4853 |
name = "torch"
|
| 4854 |
+
version = "2.7.1"
|
| 4855 |
source = { registry = "https://pypi.org/simple" }
|
| 4856 |
dependencies = [
|
| 4857 |
{ name = "filelock" },
|
| 4858 |
{ name = "fsspec" },
|
| 4859 |
{ name = "jinja2" },
|
| 4860 |
{ name = "networkx" },
|
| 4861 |
+
{ name = "nvidia-cublas-cu12", version = "12.6.4.1", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4862 |
+
{ name = "nvidia-cuda-cupti-cu12", version = "12.6.80", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4863 |
{ name = "nvidia-cuda-nvrtc-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4864 |
+
{ name = "nvidia-cuda-runtime-cu12", version = "12.6.77", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4865 |
+
{ name = "nvidia-cudnn-cu12", version = "9.5.1.17", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4866 |
+
{ name = "nvidia-cufft-cu12", version = "11.3.0.4", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4867 |
{ name = "nvidia-cufile-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4868 |
{ name = "nvidia-curand-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4869 |
+
{ name = "nvidia-cusolver-cu12", version = "11.7.1.2", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4870 |
+
{ name = "nvidia-cusparse-cu12", version = "12.5.4.2", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4871 |
{ name = "nvidia-cusparselt-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4872 |
+
{ name = "nvidia-nccl-cu12", version = "2.26.2", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4873 |
+
{ name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4874 |
{ name = "nvidia-nvtx-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 4875 |
{ name = "setuptools", marker = "python_full_version >= '3.12'" },
|
| 4876 |
{ name = "sympy" },
|
|
|
|
| 4878 |
{ name = "typing-extensions" },
|
| 4879 |
]
|
| 4880 |
wheels = [
|
| 4881 |
+
{ url = "https://files.pythonhosted.org/packages/11/56/2eae3494e3d375533034a8e8cf0ba163363e996d85f0629441fa9d9843fe/torch-2.7.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:236f501f2e383f1cb861337bdf057712182f910f10aeaf509065d54d339e49b2", size = 99093039 },
|
| 4882 |
+
{ url = "https://files.pythonhosted.org/packages/e5/94/34b80bd172d0072c9979708ccd279c2da2f55c3ef318eceec276ab9544a4/torch-2.7.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:06eea61f859436622e78dd0cdd51dbc8f8c6d76917a9cf0555a333f9eac31ec1", size = 821174704 },
|
| 4883 |
+
{ url = "https://files.pythonhosted.org/packages/50/9e/acf04ff375b0b49a45511c55d188bcea5c942da2aaf293096676110086d1/torch-2.7.1-cp311-cp311-win_amd64.whl", hash = "sha256:8273145a2e0a3c6f9fd2ac36762d6ee89c26d430e612b95a99885df083b04e52", size = 216095937 },
|
| 4884 |
+
{ url = "https://files.pythonhosted.org/packages/5b/2b/d36d57c66ff031f93b4fa432e86802f84991477e522adcdffd314454326b/torch-2.7.1-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:aea4fc1bf433d12843eb2c6b2204861f43d8364597697074c8d38ae2507f8730", size = 68640034 },
|
| 4885 |
+
{ url = "https://files.pythonhosted.org/packages/87/93/fb505a5022a2e908d81fe9a5e0aa84c86c0d5f408173be71c6018836f34e/torch-2.7.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:27ea1e518df4c9de73af7e8a720770f3628e7f667280bce2be7a16292697e3fa", size = 98948276 },
|
| 4886 |
+
{ url = "https://files.pythonhosted.org/packages/56/7e/67c3fe2b8c33f40af06326a3d6ae7776b3e3a01daa8f71d125d78594d874/torch-2.7.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:c33360cfc2edd976c2633b3b66c769bdcbbf0e0b6550606d188431c81e7dd1fc", size = 821025792 },
|
| 4887 |
+
{ url = "https://files.pythonhosted.org/packages/a1/37/a37495502bc7a23bf34f89584fa5a78e25bae7b8da513bc1b8f97afb7009/torch-2.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:d8bf6e1856ddd1807e79dc57e54d3335f2b62e6f316ed13ed3ecfe1fc1df3d8b", size = 216050349 },
|
| 4888 |
+
{ url = "https://files.pythonhosted.org/packages/3a/60/04b77281c730bb13460628e518c52721257814ac6c298acd25757f6a175c/torch-2.7.1-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:787687087412c4bd68d315e39bc1223f08aae1d16a9e9771d95eabbb04ae98fb", size = 68645146 },
|
| 4889 |
+
{ url = "https://files.pythonhosted.org/packages/66/81/e48c9edb655ee8eb8c2a6026abdb6f8d2146abd1f150979ede807bb75dcb/torch-2.7.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:03563603d931e70722dce0e11999d53aa80a375a3d78e6b39b9f6805ea0a8d28", size = 98946649 },
|
| 4890 |
+
{ url = "https://files.pythonhosted.org/packages/3a/24/efe2f520d75274fc06b695c616415a1e8a1021d87a13c68ff9dce733d088/torch-2.7.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:d632f5417b6980f61404a125b999ca6ebd0b8b4bbdbb5fbbba44374ab619a412", size = 821033192 },
|
| 4891 |
+
{ url = "https://files.pythonhosted.org/packages/dd/d9/9c24d230333ff4e9b6807274f6f8d52a864210b52ec794c5def7925f4495/torch-2.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:23660443e13995ee93e3d844786701ea4ca69f337027b05182f5ba053ce43b38", size = 216055668 },
|
| 4892 |
+
{ url = "https://files.pythonhosted.org/packages/95/bf/e086ee36ddcef9299f6e708d3b6c8487c1651787bb9ee2939eb2a7f74911/torch-2.7.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:0da4f4dba9f65d0d203794e619fe7ca3247a55ffdcbd17ae8fb83c8b2dc9b585", size = 68925988 },
|
| 4893 |
+
{ url = "https://files.pythonhosted.org/packages/69/6a/67090dcfe1cf9048448b31555af6efb149f7afa0a310a366adbdada32105/torch-2.7.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:e08d7e6f21a617fe38eeb46dd2213ded43f27c072e9165dc27300c9ef9570934", size = 99028857 },
|
| 4894 |
+
{ url = "https://files.pythonhosted.org/packages/90/1c/48b988870823d1cc381f15ec4e70ed3d65e043f43f919329b0045ae83529/torch-2.7.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:30207f672328a42df4f2174b8f426f354b2baa0b7cca3a0adb3d6ab5daf00dc8", size = 821098066 },
|
| 4895 |
+
{ url = "https://files.pythonhosted.org/packages/7b/eb/10050d61c9d5140c5dc04a89ed3257ef1a6b93e49dd91b95363d757071e0/torch-2.7.1-cp313-cp313t-win_amd64.whl", hash = "sha256:79042feca1c634aaf6603fe6feea8c6b30dfa140a6bbc0b973e2260c7e79a22e", size = 216336310 },
|
| 4896 |
+
{ url = "https://files.pythonhosted.org/packages/b1/29/beb45cdf5c4fc3ebe282bf5eafc8dfd925ead7299b3c97491900fe5ed844/torch-2.7.1-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:988b0cbc4333618a1056d2ebad9eb10089637b659eb645434d0809d8d937b946", size = 68645708 },
|
| 4897 |
]
|
| 4898 |
|
| 4899 |
[[package]]
|
|
|
|
| 4913 |
|
| 4914 |
[[package]]
|
| 4915 |
name = "torchvision"
|
| 4916 |
+
version = "0.22.1"
|
| 4917 |
source = { registry = "https://pypi.org/simple" }
|
| 4918 |
dependencies = [
|
| 4919 |
{ name = "numpy" },
|
|
|
|
| 4921 |
{ name = "torch" },
|
| 4922 |
]
|
| 4923 |
wheels = [
|
| 4924 |
+
{ url = "https://files.pythonhosted.org/packages/f6/00/bdab236ef19da050290abc2b5203ff9945c84a1f2c7aab73e8e9c8c85669/torchvision-0.22.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4addf626e2b57fc22fd6d329cf1346d474497672e6af8383b7b5b636fba94a53", size = 1947827 },
|
| 4925 |
+
{ url = "https://files.pythonhosted.org/packages/ac/d0/18f951b2be3cfe48c0027b349dcc6fde950e3dc95dd83e037e86f284f6fd/torchvision-0.22.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:8b4a53a6067d63adba0c52f2b8dd2290db649d642021674ee43c0c922f0c6a69", size = 2514021 },
|
| 4926 |
+
{ url = "https://files.pythonhosted.org/packages/c3/1a/63eb241598b36d37a0221e10af357da34bd33402ccf5c0765e389642218a/torchvision-0.22.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:b7866a3b326413e67724ac46f1ee594996735e10521ba9e6cdbe0fa3cd98c2f2", size = 7487300 },
|
| 4927 |
+
{ url = "https://files.pythonhosted.org/packages/e5/73/1b009b42fe4a7774ba19c23c26bb0f020d68525c417a348b166f1c56044f/torchvision-0.22.1-cp311-cp311-win_amd64.whl", hash = "sha256:bb3f6df6f8fd415ce38ec4fd338376ad40c62e86052d7fc706a0dd51efac1718", size = 1707989 },
|
| 4928 |
+
{ url = "https://files.pythonhosted.org/packages/02/90/f4e99a5112dc221cf68a485e853cc3d9f3f1787cb950b895f3ea26d1ea98/torchvision-0.22.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:153f1790e505bd6da123e21eee6e83e2e155df05c0fe7d56347303067d8543c5", size = 1947827 },
|
| 4929 |
+
{ url = "https://files.pythonhosted.org/packages/25/f6/53e65384cdbbe732cc2106bb04f7fb908487e4fb02ae4a1613ce6904a122/torchvision-0.22.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:964414eef19459d55a10e886e2fca50677550e243586d1678f65e3f6f6bac47a", size = 2514576 },
|
| 4930 |
+
{ url = "https://files.pythonhosted.org/packages/17/8b/155f99042f9319bd7759536779b2a5b67cbd4f89c380854670850f89a2f4/torchvision-0.22.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:699c2d70d33951187f6ed910ea05720b9b4aaac1dcc1135f53162ce7d42481d3", size = 7485962 },
|
| 4931 |
+
{ url = "https://files.pythonhosted.org/packages/05/17/e45d5cd3627efdb47587a0634179a3533593436219de3f20c743672d2a79/torchvision-0.22.1-cp312-cp312-win_amd64.whl", hash = "sha256:75e0897da7a8e43d78632f66f2bdc4f6e26da8d3f021a7c0fa83746073c2597b", size = 1707992 },
|
| 4932 |
+
{ url = "https://files.pythonhosted.org/packages/7a/30/fecdd09fb973e963da68207fe9f3d03ec6f39a935516dc2a98397bf495c6/torchvision-0.22.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9c3ae3319624c43cc8127020f46c14aa878406781f0899bb6283ae474afeafbf", size = 1947818 },
|
| 4933 |
+
{ url = "https://files.pythonhosted.org/packages/55/f4/b45f6cd92fa0acfac5e31b8e9258232f25bcdb0709a604e8b8a39d76e411/torchvision-0.22.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:4a614a6a408d2ed74208d0ea6c28a2fbb68290e9a7df206c5fef3f0b6865d307", size = 2471597 },
|
| 4934 |
+
{ url = "https://files.pythonhosted.org/packages/8d/b0/3cffd6a285b5ffee3fe4a31caff49e350c98c5963854474d1c4f7a51dea5/torchvision-0.22.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:7ee682be589bb1a002b7704f06b8ec0b89e4b9068f48e79307d2c6e937a9fdf4", size = 7485894 },
|
| 4935 |
+
{ url = "https://files.pythonhosted.org/packages/fd/1d/0ede596fedc2080d18108149921278b59f220fbb398f29619495337b0f86/torchvision-0.22.1-cp313-cp313-win_amd64.whl", hash = "sha256:2566cafcfa47ecfdbeed04bab8cef1307c8d4ef75046f7624b9e55f384880dfe", size = 1708020 },
|
| 4936 |
+
{ url = "https://files.pythonhosted.org/packages/0f/ca/e9a06bd61ee8e04fb4962a3fb524fe6ee4051662db07840b702a9f339b24/torchvision-0.22.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:043d9e35ed69c2e586aff6eb9e2887382e7863707115668ac9d140da58f42cba", size = 2137623 },
|
| 4937 |
+
{ url = "https://files.pythonhosted.org/packages/ab/c8/2ebe90f18e7ffa2120f5c3eab62aa86923185f78d2d051a455ea91461608/torchvision-0.22.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:27142bcc8a984227a6dcf560985e83f52b82a7d3f5fe9051af586a2ccc46ef26", size = 2476561 },
|
| 4938 |
+
{ url = "https://files.pythonhosted.org/packages/94/8b/04c6b15f8c29b39f0679589753091cec8b192ab296d4fdaf9055544c4ec9/torchvision-0.22.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:ef46e065502f7300ad6abc98554131c35dc4c837b978d91306658f1a65c00baa", size = 7658543 },
|
| 4939 |
+
{ url = "https://files.pythonhosted.org/packages/ab/c0/131628e6d42682b0502c63fd7f647b8b5ca4bd94088f6c85ca7225db8ac4/torchvision-0.22.1-cp313-cp313t-win_amd64.whl", hash = "sha256:7414eeacfb941fa21acddcd725f1617da5630ec822e498660a4b864d7d998075", size = 1629892 },
|
| 4940 |
]
|
| 4941 |
|
| 4942 |
[[package]]
|
|
|
|
| 5038 |
|
| 5039 |
[[package]]
|
| 5040 |
name = "triton"
|
| 5041 |
+
version = "3.3.1"
|
| 5042 |
source = { registry = "https://pypi.org/simple" }
|
| 5043 |
dependencies = [
|
| 5044 |
{ name = "setuptools", marker = "platform_machine != 'aarch64' and sys_platform == 'linux'" },
|
| 5045 |
]
|
| 5046 |
wheels = [
|
| 5047 |
+
{ url = "https://files.pythonhosted.org/packages/21/2f/3e56ea7b58f80ff68899b1dbe810ff257c9d177d288c6b0f55bf2fe4eb50/triton-3.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b31e3aa26f8cb3cc5bf4e187bf737cbacf17311e1112b781d4a059353dfd731b", size = 155689937 },
|
| 5048 |
+
{ url = "https://files.pythonhosted.org/packages/24/5f/950fb373bf9c01ad4eb5a8cd5eaf32cdf9e238c02f9293557a2129b9c4ac/triton-3.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9999e83aba21e1a78c1f36f21bce621b77bcaa530277a50484a7cb4a822f6e43", size = 155669138 },
|
| 5049 |
+
{ url = "https://files.pythonhosted.org/packages/74/1f/dfb531f90a2d367d914adfee771babbd3f1a5b26c3f5fbc458dee21daa78/triton-3.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b89d846b5a4198317fec27a5d3a609ea96b6d557ff44b56c23176546023c4240", size = 155673035 },
|
| 5050 |
+
{ url = "https://files.pythonhosted.org/packages/28/71/bd20ffcb7a64c753dc2463489a61bf69d531f308e390ad06390268c4ea04/triton-3.3.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a3198adb9d78b77818a5388bff89fa72ff36f9da0bc689db2f0a651a67ce6a42", size = 155735832 },
|
| 5051 |
]
|
| 5052 |
|
| 5053 |
[[package]]
|