torchx-nightly 2024.2.12__py3-none-any.whl → 2025.1.14__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of torchx-nightly might be problematic. Click here for more details.

Files changed (102) hide show
  1. torchx/__init__.py +2 -0
  2. torchx/apps/serve/serve.py +2 -0
  3. torchx/apps/utils/booth_main.py +2 -0
  4. torchx/apps/utils/copy_main.py +2 -0
  5. torchx/apps/utils/process_monitor.py +2 -0
  6. torchx/cli/__init__.py +2 -0
  7. torchx/cli/argparse_util.py +38 -3
  8. torchx/cli/cmd_base.py +2 -0
  9. torchx/cli/cmd_cancel.py +2 -0
  10. torchx/cli/cmd_configure.py +2 -0
  11. torchx/cli/cmd_describe.py +2 -0
  12. torchx/cli/cmd_list.py +2 -0
  13. torchx/cli/cmd_log.py +6 -24
  14. torchx/cli/cmd_run.py +30 -12
  15. torchx/cli/cmd_runopts.py +2 -0
  16. torchx/cli/cmd_status.py +2 -0
  17. torchx/cli/cmd_tracker.py +2 -0
  18. torchx/cli/colors.py +2 -0
  19. torchx/cli/main.py +2 -0
  20. torchx/components/__init__.py +2 -0
  21. torchx/components/component_test_base.py +2 -0
  22. torchx/components/dist.py +2 -0
  23. torchx/components/integration_tests/component_provider.py +2 -0
  24. torchx/components/integration_tests/integ_tests.py +2 -0
  25. torchx/components/serve.py +2 -0
  26. torchx/components/structured_arg.py +2 -0
  27. torchx/components/utils.py +2 -0
  28. torchx/examples/apps/datapreproc/datapreproc.py +2 -0
  29. torchx/examples/apps/lightning/data.py +5 -3
  30. torchx/examples/apps/lightning/model.py +2 -0
  31. torchx/examples/apps/lightning/profiler.py +7 -4
  32. torchx/examples/apps/lightning/train.py +2 -0
  33. torchx/examples/pipelines/kfp/advanced_pipeline.py +2 -0
  34. torchx/examples/pipelines/kfp/dist_pipeline.py +3 -1
  35. torchx/examples/pipelines/kfp/intro_pipeline.py +3 -1
  36. torchx/examples/torchx_out_of_sync_training.py +11 -0
  37. torchx/notebook.py +2 -0
  38. torchx/pipelines/kfp/__init__.py +2 -0
  39. torchx/pipelines/kfp/adapter.py +7 -4
  40. torchx/pipelines/kfp/version.py +2 -0
  41. torchx/runner/__init__.py +2 -0
  42. torchx/runner/api.py +78 -20
  43. torchx/runner/config.py +34 -3
  44. torchx/runner/events/__init__.py +37 -3
  45. torchx/runner/events/api.py +13 -2
  46. torchx/runner/events/handlers.py +2 -0
  47. torchx/runtime/tracking/__init__.py +2 -0
  48. torchx/runtime/tracking/api.py +2 -0
  49. torchx/schedulers/__init__.py +10 -5
  50. torchx/schedulers/api.py +3 -1
  51. torchx/schedulers/aws_batch_scheduler.py +4 -0
  52. torchx/schedulers/aws_sagemaker_scheduler.py +596 -0
  53. torchx/schedulers/devices.py +17 -4
  54. torchx/schedulers/docker_scheduler.py +38 -8
  55. torchx/schedulers/gcp_batch_scheduler.py +8 -9
  56. torchx/schedulers/ids.py +2 -0
  57. torchx/schedulers/kubernetes_mcad_scheduler.py +3 -1
  58. torchx/schedulers/kubernetes_scheduler.py +31 -5
  59. torchx/schedulers/local_scheduler.py +45 -6
  60. torchx/schedulers/lsf_scheduler.py +3 -1
  61. torchx/schedulers/ray/ray_driver.py +7 -7
  62. torchx/schedulers/ray_scheduler.py +1 -1
  63. torchx/schedulers/slurm_scheduler.py +3 -1
  64. torchx/schedulers/streams.py +2 -0
  65. torchx/specs/__init__.py +49 -8
  66. torchx/specs/api.py +87 -5
  67. torchx/specs/builders.py +61 -19
  68. torchx/specs/file_linter.py +8 -2
  69. torchx/specs/finder.py +2 -0
  70. torchx/specs/named_resources_aws.py +109 -2
  71. torchx/specs/named_resources_generic.py +2 -0
  72. torchx/specs/test/components/__init__.py +2 -0
  73. torchx/specs/test/components/a/__init__.py +2 -0
  74. torchx/specs/test/components/a/b/__init__.py +2 -0
  75. torchx/specs/test/components/a/b/c.py +2 -0
  76. torchx/specs/test/components/c/__init__.py +2 -0
  77. torchx/specs/test/components/c/d.py +2 -0
  78. torchx/tracker/__init__.py +2 -0
  79. torchx/tracker/api.py +4 -4
  80. torchx/tracker/backend/fsspec.py +2 -0
  81. torchx/util/cuda.py +2 -0
  82. torchx/util/datetime.py +2 -0
  83. torchx/util/entrypoints.py +6 -2
  84. torchx/util/io.py +2 -0
  85. torchx/util/log_tee_helpers.py +210 -0
  86. torchx/util/modules.py +2 -0
  87. torchx/util/session.py +42 -0
  88. torchx/util/shlex.py +2 -0
  89. torchx/util/strings.py +2 -0
  90. torchx/util/types.py +20 -2
  91. torchx/version.py +3 -1
  92. torchx/workspace/__init__.py +2 -0
  93. torchx/workspace/api.py +34 -1
  94. torchx/workspace/dir_workspace.py +2 -0
  95. torchx/workspace/docker_workspace.py +25 -2
  96. {torchx_nightly-2024.2.12.dist-info → torchx_nightly-2025.1.14.dist-info}/METADATA +55 -48
  97. torchx_nightly-2025.1.14.dist-info/RECORD +123 -0
  98. {torchx_nightly-2024.2.12.dist-info → torchx_nightly-2025.1.14.dist-info}/WHEEL +1 -1
  99. {torchx_nightly-2024.2.12.dist-info → torchx_nightly-2025.1.14.dist-info}/entry_points.txt +0 -1
  100. torchx_nightly-2024.2.12.dist-info/RECORD +0 -119
  101. {torchx_nightly-2024.2.12.dist-info → torchx_nightly-2025.1.14.dist-info}/LICENSE +0 -0
  102. {torchx_nightly-2024.2.12.dist-info → torchx_nightly-2025.1.14.dist-info}/top_level.txt +0 -0
@@ -1,13 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: torchx-nightly
3
- Version: 2024.2.12
3
+ Version: 2025.1.14
4
4
  Summary: TorchX SDK and Components
5
5
  Home-page: https://github.com/pytorch/torchx
6
6
  Author: TorchX Devs
7
7
  Author-email: torchx@fb.com
8
8
  License: BSD-3
9
9
  Keywords: pytorch,machine learning
10
- Platform: UNKNOWN
11
10
  Classifier: Development Status :: 4 - Beta
12
11
  Classifier: Intended Audience :: Developers
13
12
  Classifier: Intended Audience :: Science/Research
@@ -19,61 +18,71 @@ Requires-Python: >=3.7
19
18
  Description-Content-Type: text/markdown
20
19
  License-File: LICENSE
21
20
  Requires-Dist: pyre-extensions
22
- Requires-Dist: docstring-parser >=0.8.1
21
+ Requires-Dist: docstring-parser>=0.8.1
23
22
  Requires-Dist: importlib-metadata
24
23
  Requires-Dist: pyyaml
25
24
  Requires-Dist: docker
26
25
  Requires-Dist: filelock
27
- Requires-Dist: fsspec ==2023.10.0
28
- Requires-Dist: urllib3 <1.27,>=1.21.1
26
+ Requires-Dist: fsspec>=2023.10.0
27
+ Requires-Dist: urllib3<1.27,>=1.21.1
29
28
  Requires-Dist: tabulate
30
29
  Provides-Extra: aws_batch
31
- Requires-Dist: boto3 ; extra == 'aws_batch'
30
+ Requires-Dist: boto3; extra == "aws-batch"
32
31
  Provides-Extra: dev
33
- Requires-Dist: aiobotocore ; extra == 'dev'
34
- Requires-Dist: ax-platform[mysql] ==0.2.3 ; extra == 'dev'
35
- Requires-Dist: black ==23.3.0 ; extra == 'dev'
36
- Requires-Dist: boto3 ; extra == 'dev'
37
- Requires-Dist: captum >=0.4.0 ; extra == 'dev'
38
- Requires-Dist: docker ; extra == 'dev'
39
- Requires-Dist: flake8 ==3.9.0 ; extra == 'dev'
40
- Requires-Dist: fsspec[s3] ==2023.10.0 ; extra == 'dev'
41
- Requires-Dist: google-api-core ; extra == 'dev'
42
- Requires-Dist: google-cloud-batch >=0.5.0 ; extra == 'dev'
43
- Requires-Dist: google-cloud-logging >=3.0.0 ; extra == 'dev'
44
- Requires-Dist: google-cloud-runtimeconfig >=0.33.2 ; extra == 'dev'
45
- Requires-Dist: hydra-core ; extra == 'dev'
46
- Requires-Dist: ipython ; extra == 'dev'
47
- Requires-Dist: kfp ==1.8.22 ; extra == 'dev'
48
- Requires-Dist: mlflow-skinny ; extra == 'dev'
49
- Requires-Dist: moto ==4.1.6 ; extra == 'dev'
50
- Requires-Dist: protobuf ==3.20.3 ; extra == 'dev'
51
- Requires-Dist: pyre-extensions ; extra == 'dev'
52
- Requires-Dist: pyre-check ; extra == 'dev'
53
- Requires-Dist: pytest ; extra == 'dev'
54
- Requires-Dist: pytorch-lightning ==1.5.10 ; extra == 'dev'
55
- Requires-Dist: torch-model-archiver >=0.4.2 ; extra == 'dev'
56
- Requires-Dist: torch >=1.10.0 ; extra == 'dev'
57
- Requires-Dist: torchmetrics <0.11.0 ; extra == 'dev'
58
- Requires-Dist: torchserve >=0.4.2 ; extra == 'dev'
59
- Requires-Dist: torchtext >=0.11.0 ; extra == 'dev'
60
- Requires-Dist: torchvision >=0.11.1 ; extra == 'dev'
61
- Requires-Dist: ts ==0.5.1 ; extra == 'dev'
62
- Requires-Dist: usort ==1.0.2 ; extra == 'dev'
63
- Requires-Dist: ray[default] ; extra == 'dev'
32
+ Requires-Dist: aiobotocore==2.12.1; extra == "dev"
33
+ Requires-Dist: ax-platform[mysql]==0.2.3; extra == "dev"
34
+ Requires-Dist: boto3==1.34.51; extra == "dev"
35
+ Requires-Dist: captum>=0.4.0; extra == "dev"
36
+ Requires-Dist: docker; extra == "dev"
37
+ Requires-Dist: kubernetes==25.3.0; extra == "dev"
38
+ Requires-Dist: flake8==3.9.0; extra == "dev"
39
+ Requires-Dist: fsspec==2024.3.1; extra == "dev"
40
+ Requires-Dist: s3fs==2024.3.1; extra == "dev"
41
+ Requires-Dist: google-api-core; extra == "dev"
42
+ Requires-Dist: google-cloud-batch==0.17.14; extra == "dev"
43
+ Requires-Dist: google-cloud-logging==3.10.0; extra == "dev"
44
+ Requires-Dist: google-cloud-runtimeconfig==0.34.0; extra == "dev"
45
+ Requires-Dist: hydra-core; extra == "dev"
46
+ Requires-Dist: ipython; extra == "dev"
47
+ Requires-Dist: kfp==1.8.22; extra == "dev"
48
+ Requires-Dist: mlflow-skinny; extra == "dev"
49
+ Requires-Dist: moto~=5.0.8; extra == "dev"
50
+ Requires-Dist: pyre-extensions; extra == "dev"
51
+ Requires-Dist: pyre-check; extra == "dev"
52
+ Requires-Dist: pytest; extra == "dev"
53
+ Requires-Dist: pytest-cov; extra == "dev"
54
+ Requires-Dist: pytorch-lightning==2.3.1; extra == "dev"
55
+ Requires-Dist: tensorboard==2.14.0; extra == "dev"
56
+ Requires-Dist: sagemaker==2.224.4; extra == "dev"
57
+ Requires-Dist: torch-model-archiver>=0.4.2; extra == "dev"
58
+ Requires-Dist: torch==2.2.1; extra == "dev"
59
+ Requires-Dist: torchmetrics==0.10.3; extra == "dev"
60
+ Requires-Dist: torchserve>=0.10.0; extra == "dev"
61
+ Requires-Dist: torchtext==0.17.1; extra == "dev"
62
+ Requires-Dist: torchvision==0.17.1; extra == "dev"
63
+ Requires-Dist: ts==0.5.1; extra == "dev"
64
+ Requires-Dist: ray[default]; extra == "dev"
65
+ Requires-Dist: wheel; extra == "dev"
66
+ Requires-Dist: lintrunner; extra == "dev"
67
+ Requires-Dist: lintrunner-adapters; extra == "dev"
68
+ Requires-Dist: grpcio==1.62.1; extra == "dev"
69
+ Requires-Dist: grpcio-status==1.48.1; extra == "dev"
70
+ Requires-Dist: googleapis-common-protos==1.63.0; extra == "dev"
71
+ Requires-Dist: google-api-core==2.18.0; extra == "dev"
72
+ Requires-Dist: protobuf==3.20.3; extra == "dev"
64
73
  Provides-Extra: gcp_batch
65
- Requires-Dist: google-cloud-batch >=0.5.0 ; extra == 'gcp_batch'
66
- Requires-Dist: google-cloud-logging >=3.0.0 ; extra == 'gcp_batch'
67
- Requires-Dist: google-cloud-runtimeconfig >=0.33.2 ; extra == 'gcp_batch'
74
+ Requires-Dist: google-cloud-batch>=0.5.0; extra == "gcp-batch"
75
+ Requires-Dist: google-cloud-logging>=3.0.0; extra == "gcp-batch"
76
+ Requires-Dist: google-cloud-runtimeconfig>=0.33.2; extra == "gcp-batch"
68
77
  Provides-Extra: kfp
69
- Requires-Dist: kfp ==1.6.2 ; extra == 'kfp'
78
+ Requires-Dist: kfp==1.6.2; extra == "kfp"
70
79
  Provides-Extra: kubernetes
71
- Requires-Dist: kubernetes >=11 ; extra == 'kubernetes'
80
+ Requires-Dist: kubernetes>=11; extra == "kubernetes"
72
81
  Provides-Extra: ray
73
- Requires-Dist: ray >=1.12.1 ; extra == 'ray'
82
+ Requires-Dist: ray>=1.12.1; extra == "ray"
74
83
 
75
84
  [![PyPI](https://img.shields.io/pypi/v/torchx)](https://pypi.org/project/torchx/)
76
- [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](LICENSE)
85
+ [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://github.com/pytorch/torchx/blob/main/LICENSE)
77
86
  ![Tests](https://github.com/pytorch/torchx/actions/workflows/python-unittests.yaml/badge.svg)
78
87
  ![Lint](https://github.com/pytorch/torchx/actions/workflows/lint.yaml/badge.svg)
79
88
  [![codecov](https://codecov.io/gh/pytorch/torchx/branch/main/graph/badge.svg?token=ceHHIm0hXy)](https://codecov.io/gh/pytorch/torchx)
@@ -167,10 +176,8 @@ See: https://github.com/pytorch/torchx/pkgs/container/torchx
167
176
 
168
177
  ## Contributing
169
178
 
170
- We welcome PRs! See the [CONTRIBUTING](CONTRIBUTING.md) file.
179
+ We welcome PRs! See the [CONTRIBUTING](https://github.com/pytorch/torchx/blob/main/CONTRIBUTING.md) file.
171
180
 
172
181
  ## License
173
182
 
174
- TorchX is BSD licensed, as found in the [LICENSE](LICENSE) file.
175
-
176
-
183
+ TorchX is BSD licensed, as found in the [LICENSE](https://github.com/pytorch/torchx/blob/main/LICENSE) file.
@@ -0,0 +1,123 @@
1
+ torchx/__init__.py,sha256=QFDTdJacncWYWHL-2QyWdY5MUck3jVfSPRRGdvedcKc,355
2
+ torchx/notebook.py,sha256=Rc6XUMzSq7NXtsYdtVluE6T89LpEhcba-3ANxuaLCCU,1008
3
+ torchx/version.py,sha256=d28ccaZP21nlF8jEmSLjJiidyquMJo02tDpeVD36inc,951
4
+ torchx/apps/__init__.py,sha256=fE0IHi1JJpxsNVBNzWNee2thrNXFFRhY94c80RxNSIE,231
5
+ torchx/apps/serve/__init__.py,sha256=Md3cCHD7Ano9kV15PqGbicgUO-RMdh4aVy1yKiDt_xE,208
6
+ torchx/apps/serve/serve.py,sha256=u_h8agld1TwIPq5GRosHL3uxhkljNfS65McLB77O0OE,4386
7
+ torchx/apps/utils/__init__.py,sha256=Md3cCHD7Ano9kV15PqGbicgUO-RMdh4aVy1yKiDt_xE,208
8
+ torchx/apps/utils/booth_main.py,sha256=rG-WWqXK8rqqx4bg1ay28CXlhpnc0AtnKZEjQpBD_dA,1427
9
+ torchx/apps/utils/copy_main.py,sha256=_O7eElApHUSpunEglh81BMiF2PBKBxOyhb8qPMSuXMs,1838
10
+ torchx/apps/utils/process_monitor.py,sha256=9gH2Cn4191Y9dWEcNGPPWyIt_23q03LlGc3H1PG_ipk,3452
11
+ torchx/cli/__init__.py,sha256=3lloxeC_V5KFrTL2X0-tUs7KQJ-XuIH5MuGLA-q3R10,10351
12
+ torchx/cli/argparse_util.py,sha256=kZb1ubEHDrBsmrxpySFRQCW7wmHuRHD8eAInuEZjlsI,3836
13
+ torchx/cli/cmd_base.py,sha256=SdqMtqi04CEqnzcgcS35DbDbsBeMxSgEhfynfpIkMGk,790
14
+ torchx/cli/cmd_cancel.py,sha256=NKfOCu_44Lch9vliGSQ0Uv6BVqpUqj7Tob652TI-ua4,835
15
+ torchx/cli/cmd_configure.py,sha256=1kTv0qbsbV44So74plAySwWu56pQrqjhfW_kbfdC3Rw,1722
16
+ torchx/cli/cmd_describe.py,sha256=E5disbHoKTsqYKp2s3DaFW9GDLCCOgdOc3pQoHKoyCs,1283
17
+ torchx/cli/cmd_list.py,sha256=BVqHEW2oTEJ3GqcFK7c1K-i2R-DUjaXQ-WBr0meeIGM,1429
18
+ torchx/cli/cmd_log.py,sha256=v-EZYUDOcG95rEgTnrsmPJMUyxM9Mk8YFAJtUxtgViE,5475
19
+ torchx/cli/cmd_run.py,sha256=OYAp0Rp_YxdS8FLrRxoWnYX24VIsNXaGiUHAyisEXYI,11185
20
+ torchx/cli/cmd_runopts.py,sha256=NWZiP8XpQjfTDJgays2c6MgL_8wxFoeDge6NstaZdKk,1302
21
+ torchx/cli/cmd_status.py,sha256=ubtmCp4PylrIh_kC3ZJ5QJm7lzXRt_aRPmY7j-sZu_0,1836
22
+ torchx/cli/cmd_tracker.py,sha256=RfLxE4Cq1wfk7k051RtZ8RPJp0pEKSCa3KmTeRs3LF8,5218
23
+ torchx/cli/colors.py,sha256=yLMes7e_UoLAfhxE0W6edhc58t83UHAlnCN2ANPeuXw,568
24
+ torchx/cli/main.py,sha256=1Jf2cnO6Y2W69Adt88avmNPVrL6ZR4Hkff6GVB4293k,3484
25
+ torchx/components/__init__.py,sha256=6Sb8RWRGObajkH7eFSKv5bHaN5bzTqJiSEmrIIo3OIc,12121
26
+ torchx/components/component_test_base.py,sha256=22iNSdVa_qTW3SMM30Pw5UEWlK4DZVw0C03EqYiaLOI,4150
27
+ torchx/components/dist.py,sha256=t5LKU_gm0R7N7A-_vfW5uOhwON89EjMrfEahqd2FaTY,14570
28
+ torchx/components/interpret.py,sha256=g8gkKdDJvsBfX1ZrpVT7n2bMEtmwRV_1AqDyAnnQ_aA,697
29
+ torchx/components/metrics.py,sha256=1gbp8BfzZWGa7PD1db5vRADlONzmae4qSBUUdCWayr0,2814
30
+ torchx/components/serve.py,sha256=uxIC5gU2ecg0EJIPX_oEPzNNOXRAre4j2eXusrgwGAI,2156
31
+ torchx/components/structured_arg.py,sha256=etjZ1XRttrolvtr1bFuTi7bVsmvBAgqO0q-TeM3Etxk,9569
32
+ torchx/components/train.py,sha256=vtrQXRcD7bIcbb3lSeyD9BBlIe1mv1WNW6rnLK9R0Mw,1259
33
+ torchx/components/utils.py,sha256=fwqAO4lVbh1zyKSjjcE5X_kkpUVBQ0uRp_-ItZ3UyQQ,9040
34
+ torchx/components/integration_tests/__init__.py,sha256=Md3cCHD7Ano9kV15PqGbicgUO-RMdh4aVy1yKiDt_xE,208
35
+ torchx/components/integration_tests/component_provider.py,sha256=cFNGqmclcZTJlOW_YGf5XEuGeWloTmcJEAh02Aob_PQ,3995
36
+ torchx/components/integration_tests/integ_tests.py,sha256=O8jd8Jq5O0mns7xzIFsHexBDHkIIAIfELQkWCzNPzRw,5165
37
+ torchx/distributed/__init__.py,sha256=pkB_V4eX0DnupRsmOGnINL2XGDM1oRLG0-fH7-feeNI,10280
38
+ torchx/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
+ torchx/examples/torchx_out_of_sync_training.py,sha256=sXiI1G8aGsfuvxRdBszDgM8pSplqhgfXjRnAcgRwNGM,397
40
+ torchx/examples/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
+ torchx/examples/apps/datapreproc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ torchx/examples/apps/datapreproc/datapreproc.py,sha256=cu88O_WZgqZ6g7jVIG2kagAVbJ4oPMzTH03_H65w8RU,4317
43
+ torchx/examples/apps/lightning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
+ torchx/examples/apps/lightning/data.py,sha256=kSv_DFqtFVkNjZ46HT7GApImc9lMD7liy929dUrFWwM,6610
45
+ torchx/examples/apps/lightning/interpret.py,sha256=Hd3kE5a6FyhxCmJBfTzb4Tlj518zhX8V0XvZfzu4nqE,5256
46
+ torchx/examples/apps/lightning/model.py,sha256=ppj8pYkJ1Zj4kZX6JXULGgx3sYVfNIQ24OuDYXc5lYo,3947
47
+ torchx/examples/apps/lightning/profiler.py,sha256=SSSihnwjeUTkBoz0E3qn1b-wbkfUIowscx2ND_37zyw,1915
48
+ torchx/examples/apps/lightning/train.py,sha256=MGSapykGv-m4nl0WyRC-yzhPWEI4bHQ5WKrniR6czQk,6099
49
+ torchx/examples/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
+ torchx/examples/pipelines/kfp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ torchx/examples/pipelines/kfp/advanced_pipeline.py,sha256=U5N_XmpxbuEIh-hDayjJ5Lnk2lYvmgr7oznFnsKUk5g,8431
52
+ torchx/examples/pipelines/kfp/dist_pipeline.py,sha256=xFn59P1S22o2zOJ2LhlIkhjYH3le0zp2sLPNj5idTnE,2203
53
+ torchx/examples/pipelines/kfp/intro_pipeline.py,sha256=oWdMHPLWf5nKRm0hS7psF0yUp8Tf7tfR-Sm3YuUCmWk,2776
54
+ torchx/pipelines/__init__.py,sha256=2MbRVk5xwRjg-d2qPemeXpEhDsocMQumPQ53lsesZAI,606
55
+ torchx/pipelines/kfp/__init__.py,sha256=8iJ8lql_fxwuk9VCYSxXnX6tPL228fB5mDZpOs-kpn4,736
56
+ torchx/pipelines/kfp/adapter.py,sha256=5GeHULjb1kxG6wJtYVLpNkgdzUi4iYEaR42VFOwT6fY,9045
57
+ torchx/pipelines/kfp/version.py,sha256=mYBxd6bm4MeR34D--xo-JLQ9wHeAl_ZQLwbItCf9tr0,539
58
+ torchx/runner/__init__.py,sha256=x8Sz7s_tLxPgJgvWIhK4ju9BNZU61uBFywGwDY6CqJs,315
59
+ torchx/runner/api.py,sha256=yeKM3I9OA8Y9Bg4JTsHxmsS8NwroNwbUFNDDYM7c2bE,29440
60
+ torchx/runner/config.py,sha256=qpq_RfUSUykquAsEKOhDT3xBsa-m3wc6F6O8oP2QJ7k,18303
61
+ torchx/runner/events/__init__.py,sha256=1_y0bojXl3FL0zlAj7BI4Dg5cXKXUmaa2jZbVH0EDUA,5268
62
+ torchx/runner/events/api.py,sha256=pPLfowWTXtN_XcrEDNI45pE6Ijvdc_Gdxq76RduqgGE,2664
63
+ torchx/runner/events/handlers.py,sha256=ThHCIJW21BfBgB7b6ftyjASJmD1KdizpjuTtsyqnvJs,522
64
+ torchx/runtime/__init__.py,sha256=Wxje2BryzeQneFu5r6P9JJiEKG-_C9W1CcZ_JNrKT6g,593
65
+ torchx/runtime/tracking/__init__.py,sha256=dYnAPnrXYREfPXkpHhdOFkcYIODWEbA13PdD-wLQYBo,3055
66
+ torchx/runtime/tracking/api.py,sha256=SmUQyUKZqG3KlAhT7CJOGqRz1O274E4m63wQeOVq3CU,5472
67
+ torchx/schedulers/__init__.py,sha256=gwy1opmKOPzQ_Lqh2GY0chYycLmdissLfd4846mPEMY,2334
68
+ torchx/schedulers/api.py,sha256=jAjfTKNgw26Rc5-FsZCSFt1xQIBNzXdUjUeOlllCuIU,14163
69
+ torchx/schedulers/aws_batch_scheduler.py,sha256=8jRTmi5gtqyKUQfhMRqCQqNVM0drXdu8RS0xUfZby48,28091
70
+ torchx/schedulers/aws_sagemaker_scheduler.py,sha256=x33J_tQFpRr_AUv5dWf1qxqG0dbmIjaqFHyrSnHWijw,20921
71
+ torchx/schedulers/devices.py,sha256=RjVcu22ZRl_9OKtOtmA1A3vNXgu2qD6A9ST0L0Hsg4I,1734
72
+ torchx/schedulers/docker_scheduler.py,sha256=goeFEgEi0H3sagIDSsGPMOU9f-mcMbEFPo2gwHOco1k,16770
73
+ torchx/schedulers/gcp_batch_scheduler.py,sha256=o0t70s7fpGgn8MqhkIPWV3ZuF0kc5KdLGYz5-YKVb9Y,16245
74
+ torchx/schedulers/ids.py,sha256=3E-_vwVYC-8Tv8kjuY9-W7TbOe_-Laqd8a65uIN3hQY,1798
75
+ torchx/schedulers/kubernetes_mcad_scheduler.py,sha256=riUfzSBega0JcCbV9NspU_a5A46AD-74Jgf7JPvA2Is,42925
76
+ torchx/schedulers/kubernetes_scheduler.py,sha256=W_vVvQVGjNUoasN-JIsOTU9f0qjpds2u3GteNblssGM,28193
77
+ torchx/schedulers/local_scheduler.py,sha256=wOL-Js1fzEJY7RugNpFKu6BjmdHBgRf3llONFdwg-xQ,41845
78
+ torchx/schedulers/lsf_scheduler.py,sha256=BkXKyWoVrCZznjfRFQ8oW3vzM0sBGkGmGUcSX71D-nE,17667
79
+ torchx/schedulers/ray_scheduler.py,sha256=d10PtA-sEfHmDxF-GKog_Qro7FpIDCjSZbkKBdyj72E,17462
80
+ torchx/schedulers/slurm_scheduler.py,sha256=A11XvI0-Wa7n3qc1IdrYcDaQEZhj0GiGf-PjHj0Byn8,19386
81
+ torchx/schedulers/streams.py,sha256=8_SLezgnWgfv_zXUsJCUM34-h2dtv25NmZuxEwkzmxw,2007
82
+ torchx/schedulers/ray/__init__.py,sha256=fE0IHi1JJpxsNVBNzWNee2thrNXFFRhY94c80RxNSIE,231
83
+ torchx/schedulers/ray/ray_common.py,sha256=pyNYFvTKVwdjDAeCBNbPwAWwVNmlLOJWExfn90XY8u8,610
84
+ torchx/schedulers/ray/ray_driver.py,sha256=RdaCLfth16ky-5PDVOWRe_RuheWJu9xufWux2F9T7iw,12302
85
+ torchx/specs/__init__.py,sha256=T8xUCz7iVE6OsUL5P4Pzy2B8ZY_YinCVDwUer5Q-XPc,6179
86
+ torchx/specs/api.py,sha256=EI1tXPfDrz8dAyjJsuNK9mL4femS44lUuJFJUCW_oSc,37540
87
+ torchx/specs/builders.py,sha256=QDcQrnCO4bdSaiP0216XbCgTsnLutO_1_FW5jDiEIWI,9939
88
+ torchx/specs/file_linter.py,sha256=IeiomB1BgHUlT-ZsvGxar3llY63NOupfLBrOrD_---A,11860
89
+ torchx/specs/finder.py,sha256=MnwxG_UC4a-3X2wQ37ANEQR6D1TvriCLyuVYBh_-wuI,16249
90
+ torchx/specs/named_resources_aws.py,sha256=pkeZ3M7mOEC7E0rNx9S3ep-qk0hXqf0nw6rUhCNnp6U,10046
91
+ torchx/specs/named_resources_generic.py,sha256=Sg4tAdqiiWDrDz2Lj_pnfsjzGIXKTou73wPseh6j55w,2646
92
+ torchx/specs/test/components/__init__.py,sha256=J8qjUOysmcMAek2KFN13mViOXZxTYc5vCrF02t3VuFU,223
93
+ torchx/specs/test/components/a/__init__.py,sha256=kdxEgnI8QBSBiuTjaB4qDD7JX84hWowyPWU4B2Cqe9A,561
94
+ torchx/specs/test/components/a/b/__init__.py,sha256=J8qjUOysmcMAek2KFN13mViOXZxTYc5vCrF02t3VuFU,223
95
+ torchx/specs/test/components/a/b/c.py,sha256=FhixafzNqpS5zvggtWIWLxRd6HIxsOmct-d1Hs-rDoc,554
96
+ torchx/specs/test/components/c/__init__.py,sha256=5CBMckkpqJUdxBQBYHGSsItqq1gj2V0UiCw02Qfq6MM,246
97
+ torchx/specs/test/components/c/d.py,sha256=2AjE-FmQXJTw3hws66O83ToQPmjOEZLDf-jDAKrrUkQ,546
98
+ torchx/tracker/__init__.py,sha256=u4Fjw4pf49ZLbzQ8mTj5p3Dp_gvnJKxNIwWY7WszZ8E,4365
99
+ torchx/tracker/api.py,sha256=tQk8o8naMfmQVug0BBDiiVz_9SWVRdJpgyUjwytsFYE,11257
100
+ torchx/tracker/mlflow.py,sha256=poeoIXVPzr2sxgi515fMGRH83KAFNL6XFILMh0EQ2Dw,14487
101
+ torchx/tracker/backend/__init__.py,sha256=fE0IHi1JJpxsNVBNzWNee2thrNXFFRhY94c80RxNSIE,231
102
+ torchx/tracker/backend/fsspec.py,sha256=528xKryBE27Rm_OHD7r2R6fmVAclknBtoy1s034Ny6c,10440
103
+ torchx/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
104
+ torchx/util/cuda.py,sha256=-ZTa1WCLnY2WtSWAdWufLQqZSDCZfZsloBuiS84LIkU,1099
105
+ torchx/util/datetime.py,sha256=hV6Sg0u5KTBe68yrmy_RGCC5su0i4Tb_mAYphWamiXI,405
106
+ torchx/util/entrypoints.py,sha256=J5WSFtCFVZ7ZjlAvzYcdWgVSUKC3aVo1eVmJAbWhpx8,2894
107
+ torchx/util/io.py,sha256=HNpWLcFUX0WTAP3CsdamHz--FR5A4kSdLCPfNqa2UkA,1807
108
+ torchx/util/log_tee_helpers.py,sha256=wPyozmh9BOt_2d3Gxa0iNogwnjzwFitIIMBJOJ1arIw,6330
109
+ torchx/util/modules.py,sha256=LRTuZRH5bbRr0ZaCtCtvKbgwhMoPsTx-GokWbCLGPdk,1131
110
+ torchx/util/session.py,sha256=r6M_nyzXgcbk1GgYGZ324F_ehRGCqjjdVk4YgKxMj8M,1214
111
+ torchx/util/shlex.py,sha256=eXEKu8KC3zIcd8tEy9_s8Ds5oma8BORr-0VGWNpG2dk,463
112
+ torchx/util/strings.py,sha256=GkLWCmYS89Uv6bWc5hH0XwvHy7oQmprv2U7axC4A2e8,678
113
+ torchx/util/types.py,sha256=een55pV-N8aBc3qUBjHRc1llJcX10JVa19pB8dBE8No,7564
114
+ torchx/workspace/__init__.py,sha256=FqN8AN4VhR1C_SBY10MggQvNZmyanbbuPuE-JCjkyUY,798
115
+ torchx/workspace/api.py,sha256=PtDkGTC5lX03pRoYpuMz2KCmM1ZOycRP1UknqvNb97Y,6341
116
+ torchx/workspace/dir_workspace.py,sha256=npNW_IjUZm_yS5r-8hrRkH46ndDd9a_eApT64m1S1T4,2268
117
+ torchx/workspace/docker_workspace.py,sha256=PFu2KQNVC-0p2aKJ-W_BKA9ZOmXdCY2ABEkCExp3udQ,10269
118
+ torchx_nightly-2025.1.14.dist-info/LICENSE,sha256=WVHfXhFC0Ia8LTKt_nJVYobdqTJVg_4J3Crrfm2A8KQ,1721
119
+ torchx_nightly-2025.1.14.dist-info/METADATA,sha256=Uisvd-_PDKt-OpWt72lnSbe988ZTFey7slJAveCyTaQ,6169
120
+ torchx_nightly-2025.1.14.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
121
+ torchx_nightly-2025.1.14.dist-info/entry_points.txt,sha256=T328AMXeKI3JZnnxfkEew2ZcMN1oQDtkXjMz7lkV-P4,169
122
+ torchx_nightly-2025.1.14.dist-info/top_level.txt,sha256=pxew3bc2gsiViS0zADs0jb6kC5v8o_Yy_85fhHj_J1A,7
123
+ torchx_nightly-2025.1.14.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: bdist_wheel (0.45.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -6,4 +6,3 @@ torchx_minio = torchx.test.minio.MinioFS
6
6
 
7
7
  [torchx.tracker]
8
8
  fsspec = torchx.tracker.backend.fsspec:create
9
-
@@ -1,119 +0,0 @@
1
- torchx/__init__.py,sha256=ff7M2dxFLin47E152U1gSdfLog0UFD-dIlB1lX033es,340
2
- torchx/notebook.py,sha256=6x9VlBjiOpwB9aCnRiGz40Nmd_Kxj2wxQp9t0HW-Zg4,993
3
- torchx/version.py,sha256=WO5RhvE1bK2IFm0GNA_bk6jrfdTRotCt1WZmOKqNkIY,936
4
- torchx/apps/__init__.py,sha256=fE0IHi1JJpxsNVBNzWNee2thrNXFFRhY94c80RxNSIE,231
5
- torchx/apps/serve/__init__.py,sha256=Md3cCHD7Ano9kV15PqGbicgUO-RMdh4aVy1yKiDt_xE,208
6
- torchx/apps/serve/serve.py,sha256=2LxjeE_d1qCM2bxltDwYXjKbgcizm2YaIc_qPC2akvo,4371
7
- torchx/apps/utils/__init__.py,sha256=Md3cCHD7Ano9kV15PqGbicgUO-RMdh4aVy1yKiDt_xE,208
8
- torchx/apps/utils/booth_main.py,sha256=qZn-ThyHfWXz2z901pX5qbJCT75APzplYOb_GawIj18,1412
9
- torchx/apps/utils/copy_main.py,sha256=EoRHatzahLLsJmQXJL4HJgDycH8y_U5EZrkns1Fbyao,1823
10
- torchx/apps/utils/process_monitor.py,sha256=2-RcFX6Rn-9LSQ8dUWiS13F4b5aM8dsqyT0nnyRjslM,3437
11
- torchx/cli/__init__.py,sha256=lah8hAdRGyQcz_CQ8SRE3kQG7BLuNVeNLi448sHJpSo,10336
12
- torchx/cli/argparse_util.py,sha256=WhOu5OGI5SMyKCDIxxPKMCfS5RwztiWbVIzH7KXpAWg,2836
13
- torchx/cli/cmd_base.py,sha256=v6sjnk2yrPRKaJ2sjKILCY8gLNMxQrfHK4xVpjkfCoc,775
14
- torchx/cli/cmd_cancel.py,sha256=MDIrJ26Id5KCd10uIM-nHh77hIa8GbM_m0bVWkogjVU,820
15
- torchx/cli/cmd_configure.py,sha256=PSDjkG-EuRalG0t2CZ9qB68wNHYPsc66VT3PNRC9LJU,1707
16
- torchx/cli/cmd_describe.py,sha256=s6Qw6RDSibJeP0Flfw02QFqbhwvc57l9DYja4tmklkw,1268
17
- torchx/cli/cmd_list.py,sha256=zwhGQro9UgNjBMF6demc3nMp_pqPxNnH5cdtoGDZSZU,1414
18
- torchx/cli/cmd_log.py,sha256=nYGwQHPmzH1m-jwdR1ndpscF3XcT1-brS4wsLXZOFUA,6089
19
- torchx/cli/cmd_run.py,sha256=fh4Av9kfGkQOvQvFKuQEaC5zcge7I8r4qUFyMiS8TFg,10429
20
- torchx/cli/cmd_runopts.py,sha256=smQEJChk678o9n1y-crsVFiTMICp1C0PXcwoC3nRCtU,1287
21
- torchx/cli/cmd_status.py,sha256=BG-ScFn1wpLnf_VWphFvv-OI24JRQIbpCQ3_vPVVtG4,1821
22
- torchx/cli/cmd_tracker.py,sha256=S4GOTtBWoR3sbAJxRzjrF_I5uPvUjjoX-S4YEgGBLI0,5203
23
- torchx/cli/colors.py,sha256=bVN_jEDwLgvypnDMeCHKn0q0ZDDhQjBJnyVfZHAE6nc,553
24
- torchx/cli/main.py,sha256=DJYikTWacADa4VoscqZGjZmMKWWK29tBl6-pGtnzsRE,3469
25
- torchx/components/__init__.py,sha256=6-TQ4SY-Tn56os_1lOs_HMabOoE7gkkud_8e1BgvfJw,12106
26
- torchx/components/component_test_base.py,sha256=eKOwBp5cRgiA4FgZd_FCvyJ-ppv2v3JN9AGXnaSK_Cw,4135
27
- torchx/components/dist.py,sha256=tBOL_DjUeBjNDUcF2wnjlUEzZck9fo1ojRkbQA5ERT8,14555
28
- torchx/components/interpret.py,sha256=g8gkKdDJvsBfX1ZrpVT7n2bMEtmwRV_1AqDyAnnQ_aA,697
29
- torchx/components/metrics.py,sha256=1gbp8BfzZWGa7PD1db5vRADlONzmae4qSBUUdCWayr0,2814
30
- torchx/components/serve.py,sha256=9RlpwlU2KOC7sMOZBeYwUpJIKDCXrU8xNo1SH-AT3fc,2141
31
- torchx/components/structured_arg.py,sha256=I8g1M-4pmR2TH9cUXTCUROjWPZ1ecd9-UA7xIA6o0qc,9554
32
- torchx/components/train.py,sha256=vtrQXRcD7bIcbb3lSeyD9BBlIe1mv1WNW6rnLK9R0Mw,1259
33
- torchx/components/utils.py,sha256=m7mFe6du2AMHpViwcW9dF8rr_twQB6KHQuEzJyHwBXw,9025
34
- torchx/components/integration_tests/__init__.py,sha256=Md3cCHD7Ano9kV15PqGbicgUO-RMdh4aVy1yKiDt_xE,208
35
- torchx/components/integration_tests/component_provider.py,sha256=FTwzCrr3p4SWYbxcjN4E6i7qjklyrWgDWL3UGkhoDaA,3980
36
- torchx/components/integration_tests/integ_tests.py,sha256=OVgRvGrLWhDUNlqbbYj90ukGmkAwka2KubCWUR8pC7Y,5150
37
- torchx/distributed/__init__.py,sha256=pkB_V4eX0DnupRsmOGnINL2XGDM1oRLG0-fH7-feeNI,10280
38
- torchx/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
- torchx/examples/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
- torchx/examples/apps/datapreproc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
- torchx/examples/apps/datapreproc/datapreproc.py,sha256=7GV37WS3JLueID8vGFvqO93ua0PSSx__hz2MYNto53Q,4302
42
- torchx/examples/apps/lightning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
- torchx/examples/apps/lightning/data.py,sha256=uTZM_G8Wd-UjzlmeDIsl645qZl9qD7d-cesRFt0nnm4,6583
44
- torchx/examples/apps/lightning/interpret.py,sha256=Hd3kE5a6FyhxCmJBfTzb4Tlj518zhX8V0XvZfzu4nqE,5256
45
- torchx/examples/apps/lightning/model.py,sha256=GQpn4SDdwYxsgD4oZLynZCqPB8emd_veB5feYFqEVZ8,3932
46
- torchx/examples/apps/lightning/profiler.py,sha256=SWl4deBqZVf-K8Eojoelo7P04AnUIE4ig03Tjoo3qCE,1926
47
- torchx/examples/apps/lightning/train.py,sha256=_MTFX0llRbgNMNoy6v7ryWjPxHZ9AM2Xz270sicMx0g,6084
48
- torchx/examples/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
- torchx/examples/pipelines/kfp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
- torchx/examples/pipelines/kfp/advanced_pipeline.py,sha256=bMBk3bZMl7TPGyE8I3GJHgucsUjxZqshc9W57PzyrzY,8416
51
- torchx/examples/pipelines/kfp/dist_pipeline.py,sha256=hMAVKuwmCTZN0c2lHkkix7gSFS5wHePH-elaWijaJa4,2178
52
- torchx/examples/pipelines/kfp/intro_pipeline.py,sha256=wAkk0DoGSbJRNlti7gLdaudIzWiqXC4SlqVerYcphFY,2751
53
- torchx/pipelines/__init__.py,sha256=2MbRVk5xwRjg-d2qPemeXpEhDsocMQumPQ53lsesZAI,606
54
- torchx/pipelines/kfp/__init__.py,sha256=uDP4O5xrV23ncb79cNw7ifWUWJl6Qy2-d_BQyfQnTRw,721
55
- torchx/pipelines/kfp/adapter.py,sha256=USspiYah8BGTkPLorZi8RTFYDGZHoF67TkzheHMh2jQ,8952
56
- torchx/pipelines/kfp/version.py,sha256=4422bXkqH2qFTTv-Vh16Cu4EO9DrKYJTl2GpMmC9kDg,524
57
- torchx/runner/__init__.py,sha256=YYJP4xys6f_hKCBLQkqrCAmjhgXGlXuAVNf4ozSLu70,300
58
- torchx/runner/api.py,sha256=RrI89QGeBHsT52qaawYHWqe2oiE-R0OtXrzsDImO_fQ,27090
59
- torchx/runner/config.py,sha256=rt2rpKa6E1pv7IqtU57O7AmSI65HkQCKXAeIOit4XEw,17171
60
- torchx/runner/events/__init__.py,sha256=T3kz5OT0j-SlC5rzq8HO2wGrhE3yGHbIZgLhsTWzw20,4043
61
- torchx/runner/events/api.py,sha256=10B9Z9da0-1XHyO6J6hq91M7gos-cIVkDnuK6mC8Xkg,2132
62
- torchx/runner/events/handlers.py,sha256=esLkzce9fvwgjqu1IrO_furmhECUqwUeL7wy5zbqtUo,507
63
- torchx/runtime/__init__.py,sha256=Wxje2BryzeQneFu5r6P9JJiEKG-_C9W1CcZ_JNrKT6g,593
64
- torchx/runtime/tracking/__init__.py,sha256=uHbJ1NqsxFWGYz2aV0_p4OCMhW467zDJu_86B0C1Mn8,3040
65
- torchx/runtime/tracking/api.py,sha256=9mlsCnnKP8hfvypNcEX2_57OYMW4AuTMM-nvsIgOzK4,5457
66
- torchx/schedulers/__init__.py,sha256=cCansxGU45SV_lxhgzyw2on7AJyIvhprAFo6Di1x9xQ,2157
67
- torchx/schedulers/api.py,sha256=XlYrD6ZjV71HotJxdVZxA_Zc8DuxhM4KKCnkibqZflU,14140
68
- torchx/schedulers/aws_batch_scheduler.py,sha256=zTb4uOg-U7-1ih643Nym6KynE7n2_yXaf4wnBrSd4N4,27960
69
- torchx/schedulers/devices.py,sha256=PNbcpf8fEM18Ag1RgK9Q30zPBalEcPdsFWctdbLxuv8,1352
70
- torchx/schedulers/docker_scheduler.py,sha256=I-kZN-dXoQyokLPe9ZKjfhkVX5lHx_C5jvLLc2JmXQQ,15456
71
- torchx/schedulers/gcp_batch_scheduler.py,sha256=mBxJbrNTUbIuYmudzyhOOcf8KAuUpxhiQMTDgJPtL8M,16549
72
- torchx/schedulers/ids.py,sha256=IGsJEbCYTdfKdU3MhKLQU6b7sWCJy5dlRV6JIL_9BlE,1783
73
- torchx/schedulers/kubernetes_mcad_scheduler.py,sha256=xAt-on3K8HwS2kzWasn0zXd2q4IDQzo2N5A5Ehh9NII,42885
74
- torchx/schedulers/kubernetes_scheduler.py,sha256=6NXYJwiYCXNeB3ubr8t4q_SuAa-vlYdiCAPXTB3f-zg,27068
75
- torchx/schedulers/local_scheduler.py,sha256=_fnInhqIdh0xiSpfgT0172zM0-wmqJSMRQo9baT54Uo,40928
76
- torchx/schedulers/lsf_scheduler.py,sha256=KM4-LSBiTYdtP1Js8F9dSjAdNwimaTaLraZmgnZiRuI,17638
77
- torchx/schedulers/ray_scheduler.py,sha256=unnDtDu1rPpCLJLDcm4NYRo9ZCCtQgG5BtlHwVfly-U,17448
78
- torchx/schedulers/slurm_scheduler.py,sha256=rMlknOk0YW4kB4c4VCoTOy30fOYe0dOoW1CrpXxJv_I,19355
79
- torchx/schedulers/streams.py,sha256=ObaKwEEcnsjrPyc6VZOp8cgZ_f2RFextAxeISxZUWeQ,1992
80
- torchx/schedulers/ray/__init__.py,sha256=fE0IHi1JJpxsNVBNzWNee2thrNXFFRhY94c80RxNSIE,231
81
- torchx/schedulers/ray/ray_common.py,sha256=pyNYFvTKVwdjDAeCBNbPwAWwVNmlLOJWExfn90XY8u8,610
82
- torchx/schedulers/ray/ray_driver.py,sha256=0DL8Ad_hire-WgH8ZEYx1Q-mI2SUfZDk-6_6PICk8OQ,12282
83
- torchx/specs/__init__.py,sha256=fSA89Y0ZpdZLJmhIfEKNbjNNi6fbDR9k1bpIM7Xm7xo,5462
84
- torchx/specs/api.py,sha256=6Y9QkpuC8rFW7qiwVwrprd9s-z710aZzXqxYn2S2VEc,34256
85
- torchx/specs/builders.py,sha256=MJKci3zUKEC3WHh13MqZpmhdib39Bj6BK3aUvWQ-a2w,8526
86
- torchx/specs/file_linter.py,sha256=LREWELpHJyE7YN3rc5ixf2ZydWFU9dlcSy5gGqdB5rA,11714
87
- torchx/specs/finder.py,sha256=RJI0PkG69esuVzhCp4w6Lotu2tSzIRh6PhWemCSQR7I,16234
88
- torchx/specs/named_resources_aws.py,sha256=lHIOAdETkQEvOIB0QV2nMbLT99I-K5d-yiXGPJzhDJ0,7728
89
- torchx/specs/named_resources_generic.py,sha256=_xz0cRjy3fz-CVtX9G_MY7f3NX6n3AkP3xzAkuDevwk,2631
90
- torchx/specs/test/components/__init__.py,sha256=Md3cCHD7Ano9kV15PqGbicgUO-RMdh4aVy1yKiDt_xE,208
91
- torchx/specs/test/components/a/__init__.py,sha256=T7exlQ47Fak5ajCEGPg6_yOfChJCWpIMhWBmSVUnlrQ,546
92
- torchx/specs/test/components/a/b/__init__.py,sha256=Md3cCHD7Ano9kV15PqGbicgUO-RMdh4aVy1yKiDt_xE,208
93
- torchx/specs/test/components/a/b/c.py,sha256=QyTZfsCaSZscmk3DeNOkAyMoz6GCcayrWtOKbNFIZ1M,539
94
- torchx/specs/test/components/c/__init__.py,sha256=fE0IHi1JJpxsNVBNzWNee2thrNXFFRhY94c80RxNSIE,231
95
- torchx/specs/test/components/c/d.py,sha256=RH07jjo6uvFbzIaNFnAwmD_h24cEsT8kyZDTN-ezFio,531
96
- torchx/tracker/__init__.py,sha256=3uUMRTQbQ-EcJrAofn3YiYJ00QwzbK4j6bJdgX8_D-k,4350
97
- torchx/tracker/api.py,sha256=1K7X5mtkoEonICOEXCpPHyefcnILI_VZhqDpPb-yOmc,11254
98
- torchx/tracker/mlflow.py,sha256=poeoIXVPzr2sxgi515fMGRH83KAFNL6XFILMh0EQ2Dw,14487
99
- torchx/tracker/backend/__init__.py,sha256=fE0IHi1JJpxsNVBNzWNee2thrNXFFRhY94c80RxNSIE,231
100
- torchx/tracker/backend/fsspec.py,sha256=JpSioMgn54mrxqqpY0kw5Gudqx9hhxkgDLaOFSEP2Ko,10425
101
- torchx/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
102
- torchx/util/cuda.py,sha256=GiAtP9-T4zJxwHl7r5qGQRuINb59Mzwz8tnzB1MVY74,1084
103
- torchx/util/datetime.py,sha256=e-sO5Wjx1Utpln14C3qfJHl4v3KM-SMnn11hSyvkqFY,390
104
- torchx/util/entrypoints.py,sha256=C4A7cF1tPLlfyYWyZ7uZEtsKeuoOoLbMv0sOSxLhXs4,2710
105
- torchx/util/io.py,sha256=sxb6KI42Lq6n5z6_-YKW_mAhgPdC6CxzexlMyGheWSc,1792
106
- torchx/util/modules.py,sha256=PjAvkC199EYEQCRIM-Fmrb1DRnySNcnV3xWrfKtqaqQ,1116
107
- torchx/util/shlex.py,sha256=KzyWektMeU3oXS3Z5mFkNSPLItBTszVcvQ3EYfOMUYA,448
108
- torchx/util/strings.py,sha256=7CZe5WKHa7IQ6DuJCYeJ5FapUC4Fd1OGeq1yZAmjluw,663
109
- torchx/util/types.py,sha256=6ASuDKGO91UU3DCSuWhPX_C03341tApLCQEByUz8xpY,7016
110
- torchx/workspace/__init__.py,sha256=KbGEzJqqXaIxALm_EQO64aw-fE7MeDMFXcpU1mY650I,783
111
- torchx/workspace/api.py,sha256=Ej6DR__mNWaVyZgoVNAAOloDy1kTD5X1jz7pRtoVf80,5464
112
- torchx/workspace/dir_workspace.py,sha256=Fz-hKIx0KN8iJf2BsthNj0NvTkWlxP6WFsElPs_BaT0,2253
113
- torchx/workspace/docker_workspace.py,sha256=cqvxHTtrVza0gkoImbzeRiroWkCjdBXRVgONvaulS0g,9410
114
- torchx_nightly-2024.2.12.dist-info/LICENSE,sha256=WVHfXhFC0Ia8LTKt_nJVYobdqTJVg_4J3Crrfm2A8KQ,1721
115
- torchx_nightly-2024.2.12.dist-info/METADATA,sha256=jVShowLbz4eQ1yvsP6NEA-JseiHyMoTrzNci9bYrrGQ,5611
116
- torchx_nightly-2024.2.12.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
117
- torchx_nightly-2024.2.12.dist-info/entry_points.txt,sha256=3JYZFlX9aWzR-Gs_qsx1zq7mlqbFz6Mi9rQUULW8caI,170
118
- torchx_nightly-2024.2.12.dist-info/top_level.txt,sha256=pxew3bc2gsiViS0zADs0jb6kC5v8o_Yy_85fhHj_J1A,7
119
- torchx_nightly-2024.2.12.dist-info/RECORD,,