torchx-nightly 2025.9.29__py3-none-any.whl → 2025.10.1__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.

torchx/cli/cmd_run.py CHANGED
@@ -344,7 +344,7 @@ class CmdRun(SubCommand):
344
344
  "Invalid scheduler configuration: %s\n"
345
345
  "To configure scheduler options, either:\n"
346
346
  " 1. Use the `-cfg` command-line argument, e.g., `-cfg key1=value1,key2=value2`\n"
347
- " 2. Set up a `.torchxconfig` file. For more details, visit: https://pytorch.org/torchx/main/runner.config.html\n"
347
+ " 2. Set up a `.torchxconfig` file. For more details, visit: https://meta-pytorch.org/torchx/main/runner.config.html\n"
348
348
  "Run `torchx runopts %s` to check all available configuration options for the "
349
349
  "`%s` scheduler."
350
350
  )
torchx/cli/cmd_tracker.py CHANGED
@@ -45,7 +45,7 @@ class CmdTracker(SubCommand):
45
45
  else:
46
46
  raise RuntimeError(
47
47
  "No trackers configured."
48
- " See: https://pytorch.org/torchx/latest/runtime/tracking.html"
48
+ " See: https://meta-pytorch.org/torchx/latest/runtime/tracking.html"
49
49
  )
50
50
 
51
51
  def add_list_job_arguments(self, subparser: argparse.ArgumentParser) -> None:
@@ -181,7 +181,7 @@ To validate that you've defined your component correctly you can either:
181
181
 
182
182
  1. (easiest) Dryrun your component's ``--help`` with the cli: ``torchx run --dryrun ~/component.py:train --help``
183
183
  2. Use the component :ref:`linter<specs:Component Linter>`
184
- (see `dist_test.py <https://github.com/pytorch/torchx/blob/main/torchx/components/test/dist_test.py>`_ as an example)
184
+ (see `dist_test.py <https://github.com/meta-pytorch/torchx/blob/main/torchx/components/test/dist_test.py>`_ as an example)
185
185
 
186
186
 
187
187
  Running as a Job
torchx/components/dist.py CHANGED
@@ -186,7 +186,7 @@ def ddp(
186
186
 
187
187
  Note: (cpu, gpu, memMB) parameters are mutually exclusive with ``h`` (named resource) where
188
188
  ``h`` takes precedence if specified for setting resource requirements.
189
- See `registering named resources <https://pytorch.org/torchx/latest/advanced.html#registering-named-resources>`_.
189
+ See `registering named resources <https://meta-pytorch.org/torchx/latest/advanced.html#registering-named-resources>`_.
190
190
 
191
191
  Args:
192
192
  script_args: arguments to the main module
@@ -154,7 +154,7 @@ def python(
154
154
 
155
155
  Note: (cpu, gpu, memMB) parameters are mutually exclusive with ``h`` (named resource) where
156
156
  ``h`` takes precedence if specified for setting resource requirements.
157
- See `registering named resources <https://pytorch.org/torchx/latest/advanced.html#registering-named-resources>`_.
157
+ See `registering named resources <https://meta-pytorch.org/torchx/latest/advanced.html#registering-named-resources>`_.
158
158
 
159
159
  Args:
160
160
  args: arguments passed to the program in sys.argv[1:] (ignored with `--c`)
@@ -48,7 +48,7 @@ def local_rank() -> int:
48
48
  " but the `LOCAL_RANK` environment variable is not set. Will trivially return 0 for local_rank.\n"
49
49
  " It is recommended to use torchrun/torchx to run your script or set the `LOCAL_RANK` manually.\n"
50
50
  " For additional details see:\n"
51
- " 1) https://pytorch.org/torchx/latest/components/distributed.html\n"
51
+ " 1) https://meta-pytorch.org/torchx/latest/components/distributed.html\n"
52
52
  " 2) https://pytorch.org/docs/stable/elastic/run.html\n"
53
53
  "=============================================================================================="
54
54
  )
torchx/runner/config.py CHANGED
@@ -494,6 +494,8 @@ def find_configs(dirs: Optional[Iterable[str]] = None) -> List[str]:
494
494
 
495
495
  config = os.getenv(ENV_TORCHXCONFIG)
496
496
  if config is not None:
497
+ if not config:
498
+ return []
497
499
  configfile = Path(config)
498
500
  if not configfile.is_file():
499
501
  raise FileNotFoundError(
@@ -485,7 +485,7 @@ class KubernetesScheduler(
485
485
  For installation instructions see: https://github.com/volcano-sh/volcano
486
486
 
487
487
  This has been confirmed to work with Volcano v1.3.0 and Kubernetes versions
488
- v1.18-1.21. See https://github.com/pytorch/torchx/issues/120 which is
488
+ v1.18-1.21. See https://github.com/meta-pytorch/torchx/issues/120 which is
489
489
  tracking Volcano support for Kubernetes v1.22.
490
490
 
491
491
  .. note::
torchx/specs/__init__.py CHANGED
@@ -41,6 +41,7 @@ from torchx.specs.api import (
41
41
  RoleStatus,
42
42
  runopt,
43
43
  runopts,
44
+ TORCHX_HOME,
44
45
  UnknownAppException,
45
46
  UnknownSchedulerException,
46
47
  VolumeMount,
@@ -53,6 +54,7 @@ from torchx.util.modules import import_attr
53
54
 
54
55
  GiB: int = 1024
55
56
 
57
+
56
58
  ResourceFactory = Callable[[], Resource]
57
59
 
58
60
  AWS_NAMED_RESOURCES: Mapping[str, ResourceFactory] = import_attr(
@@ -127,7 +129,7 @@ def resource(
127
129
 
128
130
  If ``h`` is specified then it is used to look up the
129
131
  resource specs from the list of registered named resources.
130
- See `registering named resource <https://pytorch.org/torchx/latest/advanced.html#registering-named-resources>`_.
132
+ See `registering named resource <https://meta-pytorch.org/torchx/latest/advanced.html#registering-named-resources>`_.
131
133
 
132
134
  Otherwise a ``Resource`` object is created from the raw resource specs.
133
135
 
torchx/specs/api.py CHANGED
@@ -11,6 +11,8 @@ import copy
11
11
  import inspect
12
12
  import json
13
13
  import logging as logger
14
+ import os
15
+ import pathlib
14
16
  import re
15
17
  import typing
16
18
  from dataclasses import asdict, dataclass, field
@@ -66,6 +68,32 @@ YELLOW_BOLD = "\033[1;33m"
66
68
  RESET = "\033[0m"
67
69
 
68
70
 
71
+ def TORCHX_HOME(*subdir_paths: str) -> pathlib.Path:
72
+ """
73
+ Path to the "dot-directory" for torchx.
74
+ Defaults to `~/.torchx` and is overridable via the `TORCHX_HOME` environment variable.
75
+
76
+ Usage:
77
+
78
+ .. doc-test::
79
+
80
+ from pathlib import Path
81
+ from torchx.specs import TORCHX_HOME
82
+
83
+ assert TORCHX_HOME() == Path.home() / ".torchx"
84
+ assert TORCHX_HOME("conda-pack-out") == Path.home() / ".torchx" / "conda-pack-out"
85
+ ```
86
+ """
87
+
88
+ default_dir = str(pathlib.Path.home() / ".torchx")
89
+ torchx_home = pathlib.Path(os.getenv("TORCHX_HOME", default_dir))
90
+
91
+ torchx_home = torchx_home / os.path.sep.join(subdir_paths)
92
+ torchx_home.mkdir(parents=True, exist_ok=True)
93
+
94
+ return torchx_home
95
+
96
+
69
97
  # ========================================
70
98
  # ==== Distributed AppDef API =======
71
99
  # ========================================
@@ -826,7 +854,7 @@ class runopt:
826
854
 
827
855
  NOTE: dict parsing uses ":" as the kv separator (rather than the standard "=") because "=" is used
828
856
  at the top-level cfg to parse runopts (notice the plural) from the CLI. Originally torchx only supported
829
- primitives and list[str] as CfgVal but dict[str,str] was added in https://github.com/pytorch/torchx/pull/855
857
+ primitives and list[str] as CfgVal but dict[str,str] was added in https://github.com/meta-pytorch/torchx/pull/855
830
858
  """
831
859
 
832
860
  if self.opt_type is None:
@@ -75,7 +75,7 @@ def get_fn_docstring(fn: Callable[..., object]) -> Tuple[str, Dict[str, str]]:
75
75
  if the description
76
76
  """
77
77
  default_fn_desc = f"""{fn.__name__} TIP: improve this help string by adding a docstring
78
- to your component (see: https://pytorch.org/torchx/latest/component_best_practices.html)"""
78
+ to your component (see: https://meta-pytorch.org/torchx/latest/component_best_practices.html)"""
79
79
  args_description = _get_default_arguments_descriptions(fn)
80
80
  func_description = inspect.getdoc(fn)
81
81
  if not func_description:
torchx/specs/finder.py CHANGED
@@ -452,7 +452,7 @@ def get_component(
452
452
  raise ComponentNotFoundException(
453
453
  f"Component `{name}` not found. Please make sure it is one of the "
454
454
  "builtins: `torchx builtins`. Or registered via `[torchx.components]` "
455
- "entry point (see: https://pytorch.org/torchx/latest/configure.html)"
455
+ "entry point (see: https://meta-pytorch.org/torchx/latest/configure.html)"
456
456
  )
457
457
 
458
458
  component = components[name]
@@ -16,7 +16,7 @@ the equvalent resource in mem, cpu and gpu numbers.
16
16
 
17
17
  .. note::
18
18
  These resource definitions may change in future. It is expected for each user to
19
- manage their own resources. Follow https://pytorch.org/torchx/latest/specs.html#torchx.specs.get_named_resources
19
+ manage their own resources. Follow https://meta-pytorch.org/torchx/latest/specs.html#torchx.specs.get_named_resources
20
20
  to set up named resources.
21
21
 
22
22
  Usage:
@@ -47,7 +47,7 @@ NEURON_DEVICE = "aws.amazon.com/neurondevice"
47
47
  MEM_TAX = 0.96
48
48
 
49
49
  # determines instance type for non-honogeneous CEs
50
- # see https://github.com/pytorch/torchx/issues/780
50
+ # see https://github.com/meta-pytorch/torchx/issues/780
51
51
  K8S_ITYPE = "node.kubernetes.io/instance-type"
52
52
  GiB: int = int(1024 * MEM_TAX)
53
53
 
@@ -32,7 +32,7 @@ implementation.
32
32
 
33
33
  Example usage
34
34
  -------------
35
- Sample `code <https://github.com/pytorch/torchx/blob/main/torchx/examples/apps/tracker/main.py>`__ using tracker API.
35
+ Sample `code <https://github.com/meta-pytorch/torchx/blob/main/torchx/examples/apps/tracker/main.py>`__ using tracker API.
36
36
 
37
37
 
38
38
  Tracker Setup
@@ -111,7 +111,7 @@ Use :py:meth:`~torchx.tracker.app_run_from_env`:
111
111
  Reference :py:class:`~torchx.tracker.api.TrackerBase` implementation
112
112
  --------------------------------------------------------------------
113
113
  :py:class:`~torchx.tracker.backend.fsspec.FsspecTracker` provides reference implementation of a tracker backend.
114
- GitHub example `directory <https://github.com/pytorch/torchx/blob/main/torchx/examples/apps/tracker/>`__ provides example on how to
114
+ GitHub example `directory <https://github.com/meta-pytorch/torchx/blob/main/torchx/examples/apps/tracker/>`__ provides example on how to
115
115
  configure and use it in user application.
116
116
 
117
117
 
torchx/tracker/api.py CHANGED
@@ -191,7 +191,7 @@ def build_trackers(
191
191
  factory = entrypoint_factories.get(factory_name) or load_module(factory_name)
192
192
  if not factory:
193
193
  logger.warning(
194
- f"No tracker factory `{factory_name}` found in entry_points or modules. See https://pytorch.org/torchx/main/tracker.html#module-torchx.tracker"
194
+ f"No tracker factory `{factory_name}` found in entry_points or modules. See https://meta-pytorch.org/torchx/main/tracker.html#module-torchx.tracker"
195
195
  )
196
196
  continue
197
197
  if config:
torchx/workspace/api.py CHANGED
@@ -275,7 +275,6 @@ def walk_workspace(
275
275
  walk_workspace walks the filesystem path and applies the ignore rules
276
276
  specified via ``ignore_name``.
277
277
  This follows the rules for ``.dockerignore``.
278
- https://docs.docker.com/engine/reference/builder/#dockerignore-file
279
278
  """
280
279
  ignore_patterns = []
281
280
  ignore_path = posixpath.join(path, ignore_name)
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: torchx-nightly
3
- Version: 2025.9.29
3
+ Version: 2025.10.1
4
4
  Summary: TorchX SDK and Components
5
- Home-page: https://github.com/pytorch/torchx
5
+ Home-page: https://github.com/meta-pytorch/torchx
6
6
  Author: TorchX Devs
7
7
  Author-email: torchx@fb.com
8
8
  License: BSD-3
@@ -61,9 +61,9 @@ Provides-Extra: kubernetes
61
61
  Requires-Dist: kubernetes>=11; extra == "kubernetes"
62
62
 
63
63
  [![PyPI](https://img.shields.io/pypi/v/torchx)](https://pypi.org/project/torchx/)
64
- [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://github.com/pytorch/torchx/blob/main/LICENSE)
65
- ![Tests](https://github.com/pytorch/torchx/actions/workflows/python-unittests.yaml/badge.svg)
66
- ![Lint](https://github.com/pytorch/torchx/actions/workflows/lint.yaml/badge.svg)
64
+ [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://github.com/meta-pytorch/torchx/blob/main/LICENSE)
65
+ ![Tests](https://github.com/meta-pytorch/torchx/actions/workflows/python-unittests.yaml/badge.svg)
66
+ ![Lint](https://github.com/meta-pytorch/torchx/actions/workflows/lint.yaml/badge.svg)
67
67
  [![codecov](https://codecov.io/gh/pytorch/torchx/branch/main/graph/badge.svg?token=ceHHIm0hXy)](https://codecov.io/gh/pytorch/torchx)
68
68
 
69
69
 
@@ -82,16 +82,16 @@ TorchX currently supports:
82
82
  * Docker
83
83
  * Local
84
84
 
85
- Need a scheduler not listed? [Let us know!](https://github.com/pytorch/torchx/issues?q=is%3Aopen+is%3Aissue+label%3Ascheduler-request)
85
+ Need a scheduler not listed? [Let us know!](https://github.com/meta-pytorch/torchx/issues?q=is%3Aopen+is%3Aissue+label%3Ascheduler-request)
86
86
 
87
87
  ## Quickstart
88
88
 
89
- See the [quickstart guide](https://pytorch.org/torchx/latest/quickstart.html).
89
+ See the [quickstart guide](https://meta-pytorch.org/torchx/latest/quickstart.html).
90
90
 
91
91
  ## Documentation
92
92
 
93
- * [Stable Documentation](https://pytorch.org/torchx/latest/)
94
- * [Nightly Documentation](https://pytorch.org/torchx/main/)
93
+ * [Stable Documentation](https://meta-pytorch.org/torchx/latest/)
94
+ * [Nightly Documentation](https://meta-pytorch.org/torchx/main/)
95
95
 
96
96
  ## Requirements
97
97
 
@@ -133,22 +133,22 @@ pip install torchx-nightly[dev]
133
133
 
134
134
  ```bash
135
135
  # install torchx sdk and CLI from source
136
- $ pip install -e git+https://github.com/pytorch/torchx.git#egg=torchx
136
+ $ pip install -e git+https://github.com/meta-pytorch/torchx.git#egg=torchx
137
137
 
138
138
  # install extra dependencies
139
- $ pip install -e git+https://github.com/pytorch/torchx.git#egg=torchx[dev]
139
+ $ pip install -e git+https://github.com/meta-pytorch/torchx.git#egg=torchx[dev]
140
140
  ```
141
141
 
142
142
  ### Docker
143
143
 
144
144
  TorchX provides a docker container for using as as part of a TorchX role.
145
145
 
146
- See: https://github.com/pytorch/torchx/pkgs/container/torchx
146
+ See: https://github.com/meta-pytorch/torchx/pkgs/container/torchx
147
147
 
148
148
  ## Contributing
149
149
 
150
- We welcome PRs! See the [CONTRIBUTING](https://github.com/pytorch/torchx/blob/main/CONTRIBUTING.md) file.
150
+ We welcome PRs! See the [CONTRIBUTING](https://github.com/meta-pytorch/torchx/blob/main/CONTRIBUTING.md) file.
151
151
 
152
152
  ## License
153
153
 
154
- TorchX is BSD licensed, as found in the [LICENSE](https://github.com/pytorch/torchx/blob/main/LICENSE) file.
154
+ TorchX is BSD licensed, as found in the [LICENSE](https://github.com/meta-pytorch/torchx/blob/main/LICENSE) file.
@@ -16,25 +16,25 @@ torchx/cli/cmd_configure.py,sha256=1kTv0qbsbV44So74plAySwWu56pQrqjhfW_kbfdC3Rw,1
16
16
  torchx/cli/cmd_describe.py,sha256=E5disbHoKTsqYKp2s3DaFW9GDLCCOgdOc3pQoHKoyCs,1283
17
17
  torchx/cli/cmd_list.py,sha256=alkS9aIaDI8lX3W8uj8Vtr3IU3G2VeCuokKSd3zOFug,1409
18
18
  torchx/cli/cmd_log.py,sha256=v-EZYUDOcG95rEgTnrsmPJMUyxM9Mk8YFAJtUxtgViE,5475
19
- torchx/cli/cmd_run.py,sha256=TshvEMTxMRj5O0KhetzHepZUaAFq8R5nFgY8GC_Gl6g,18576
19
+ torchx/cli/cmd_run.py,sha256=Rhs7kQc7qI3lY3479D3EKR2gca29jsKbZbJHW8SI_DA,18581
20
20
  torchx/cli/cmd_runopts.py,sha256=NWZiP8XpQjfTDJgays2c6MgL_8wxFoeDge6NstaZdKk,1302
21
21
  torchx/cli/cmd_status.py,sha256=22IAEmKs0qkG6kJi83u9dRX2Q-ntT7yehVx7FxtY-vQ,2114
22
- torchx/cli/cmd_tracker.py,sha256=RfLxE4Cq1wfk7k051RtZ8RPJp0pEKSCa3KmTeRs3LF8,5218
22
+ torchx/cli/cmd_tracker.py,sha256=9gmOmYi-89qQRGQfSrXCTto7ve54_JKFqs_wa7oRUA8,5223
23
23
  torchx/cli/colors.py,sha256=yLMes7e_UoLAfhxE0W6edhc58t83UHAlnCN2ANPeuXw,568
24
24
  torchx/cli/main.py,sha256=1Jf2cnO6Y2W69Adt88avmNPVrL6ZR4Hkff6GVB4293k,3484
25
- torchx/components/__init__.py,sha256=YT2D_w4df1TN_Soek6vhk6fv8WFxT-_mgs6SINrP0BI,11810
25
+ torchx/components/__init__.py,sha256=JaVte0j9Gqi6IrjZKudJ2Kr3gkdHsvlCdRTo-zYpSRo,11815
26
26
  torchx/components/component_test_base.py,sha256=22iNSdVa_qTW3SMM30Pw5UEWlK4DZVw0C03EqYiaLOI,4150
27
- torchx/components/dist.py,sha256=9jECk3jjQ4Yh4oWDK8vnQ7kcI0-OWCbbwj8uvBdI9FU,14588
27
+ torchx/components/dist.py,sha256=xmWf7nNuadcwPkbNHowd2bgiaPyZ9QDHv_5tSov11N0,14593
28
28
  torchx/components/interpret.py,sha256=g8gkKdDJvsBfX1ZrpVT7n2bMEtmwRV_1AqDyAnnQ_aA,697
29
29
  torchx/components/metrics.py,sha256=1gbp8BfzZWGa7PD1db5vRADlONzmae4qSBUUdCWayr0,2814
30
30
  torchx/components/serve.py,sha256=uxIC5gU2ecg0EJIPX_oEPzNNOXRAre4j2eXusrgwGAI,2156
31
31
  torchx/components/structured_arg.py,sha256=8jMcd0rtUmzCKEQKJ_JYzxSkMMK9q0fYjkwAs6wo78E,9595
32
32
  torchx/components/train.py,sha256=vtrQXRcD7bIcbb3lSeyD9BBlIe1mv1WNW6rnLK9R0Mw,1259
33
- torchx/components/utils.py,sha256=QRBxBm1OnNhOhpPs0lKdbJ8_mNhWYMklY6cl1gPIw9A,9363
33
+ torchx/components/utils.py,sha256=IMjihhgs7nO67YtTetUBjN_CRpyIyyQsaJBkp7mpHfk,9368
34
34
  torchx/components/integration_tests/__init__.py,sha256=Md3cCHD7Ano9kV15PqGbicgUO-RMdh4aVy1yKiDt_xE,208
35
35
  torchx/components/integration_tests/component_provider.py,sha256=g-4ig1vtd5Vzgug0VAKRAFUt6KAV3TgQrBCrwRSJ7ZY,3981
36
36
  torchx/components/integration_tests/integ_tests.py,sha256=O8jd8Jq5O0mns7xzIFsHexBDHkIIAIfELQkWCzNPzRw,5165
37
- torchx/distributed/__init__.py,sha256=lobebigfujmRTe_SJw07_a9iohBxDhq2iiPsV1YcKjw,10247
37
+ torchx/distributed/__init__.py,sha256=kh9YzDwWX7zFJJ8StR9qhMM2V3-66INs9i3ztDF-1ho,10252
38
38
  torchx/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
39
  torchx/examples/torchx_out_of_sync_training.py,sha256=sXiI1G8aGsfuvxRdBszDgM8pSplqhgfXjRnAcgRwNGM,397
40
40
  torchx/examples/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -49,7 +49,7 @@ torchx/examples/apps/lightning/train.py,sha256=0wvvshGHvZowePB4LfclXwn40X7i9euM0
49
49
  torchx/pipelines/__init__.py,sha256=2MbRVk5xwRjg-d2qPemeXpEhDsocMQumPQ53lsesZAI,606
50
50
  torchx/runner/__init__.py,sha256=x8Sz7s_tLxPgJgvWIhK4ju9BNZU61uBFywGwDY6CqJs,315
51
51
  torchx/runner/api.py,sha256=0kDyOgmAcq0X-bTWiBIqX3BJOCYSa5-TZ7o2Hrqxzdw,30053
52
- torchx/runner/config.py,sha256=20X-vveAJVjb1AjjDSC6x_BVcdrTj9_ZLt_CHTykiFo,18266
52
+ torchx/runner/config.py,sha256=SaKOB50d79WaMFPWK8CC4as6UaNFaRGhrBkfajq3KC4,18311
53
53
  torchx/runner/events/__init__.py,sha256=cMiNjnr4eUNQ2Nxxtu4nsvN5lu56b-a6nJ-ct3i7DQk,5536
54
54
  torchx/runner/events/api.py,sha256=bvxKBAYK8LzbrBNaNLgL1x0aivtfANmWo1EMGOrSR8k,2668
55
55
  torchx/runner/events/handlers.py,sha256=ThHCIJW21BfBgB7b6ftyjASJmD1KdizpjuTtsyqnvJs,522
@@ -64,17 +64,17 @@ torchx/schedulers/devices.py,sha256=RjVcu22ZRl_9OKtOtmA1A3vNXgu2qD6A9ST0L0Hsg4I,
64
64
  torchx/schedulers/docker_scheduler.py,sha256=xuK00-dB6o8TV1YaZox7O5P09LHB2KeQ6t4eiNtqMYQ,16781
65
65
  torchx/schedulers/ids.py,sha256=3E-_vwVYC-8Tv8kjuY9-W7TbOe_-Laqd8a65uIN3hQY,1798
66
66
  torchx/schedulers/kubernetes_mcad_scheduler.py,sha256=1tuzq3OutCMdSPqg_dNmCHt_wyuSFKG0-ywLc3qITJo,42949
67
- torchx/schedulers/kubernetes_scheduler.py,sha256=0_loGJ7WnxEr9dhgFt3Gw-7nVLirMDVN-MAFTCq7erE,28217
67
+ torchx/schedulers/kubernetes_scheduler.py,sha256=hCqtcz8S5doqFa9SUX_KRJAKg0FzkYHHvEf1tjq1Rak,28222
68
68
  torchx/schedulers/local_scheduler.py,sha256=ttnxFDy48_DSYDEW-no27OirFZOyfrjwJ2S1MwBUi74,41929
69
69
  torchx/schedulers/lsf_scheduler.py,sha256=YS6Yel8tXJqLPxbcGz95lZG2nCi36AQXdNDyuBJePKg,17661
70
70
  torchx/schedulers/slurm_scheduler.py,sha256=vZt102OxuTGj0ZE-V9dWbldtOyL2VbHcxADm_osL7Y4,31568
71
71
  torchx/schedulers/streams.py,sha256=8_SLezgnWgfv_zXUsJCUM34-h2dtv25NmZuxEwkzmxw,2007
72
- torchx/specs/__init__.py,sha256=HU7OoXs7aBBi0IenB49QIONRzoG1Ovs1Qlm9KnsvqfE,6609
73
- torchx/specs/api.py,sha256=Rzv_Yx8yyseARbC928ZvqAZbvaXhJRDAbcyPsxiblF4,41543
72
+ torchx/specs/__init__.py,sha256=RNjj4cV64AXP-2XowHLJJpzub1zYuyS17-2SU-dCcN0,6632
73
+ torchx/specs/api.py,sha256=ZJEqBnEFG2jMMfQuIrBFHiX-Thr_wz2mAMiYeGf-fWo,42311
74
74
  torchx/specs/builders.py,sha256=Ye3of4MupJ-da8vLaX6_-nzGo_FRw1BFpYsX6dAZCNk,13730
75
- torchx/specs/file_linter.py,sha256=6_aoeuS5d9UwXseKKfPgWNTwxj-f7G1i3uO9mQepti4,14402
76
- torchx/specs/finder.py,sha256=KbtyQ2ZUIgg4vgIUdmvAis7es5CCnLtdbvxdusWkv3c,17433
77
- torchx/specs/named_resources_aws.py,sha256=ISjHtifRJqB8u7PeAMiyLyO_S0WCaZiK-CFF3qe6JDU,11415
75
+ torchx/specs/file_linter.py,sha256=z0c4mKJv47BWiPaWCdUM0A8kHwnj4b1s7oTmESuD9Tc,14407
76
+ torchx/specs/finder.py,sha256=gWQNEFrLYqrZoI0gMMhQ70YAC4sxqS0ZFpoWAmcVi44,17438
77
+ torchx/specs/named_resources_aws.py,sha256=28B1e_sSJbqmzApBMMJvOUKaIFPm1jj04-Nqt0Z30Xw,11425
78
78
  torchx/specs/named_resources_generic.py,sha256=Sg4tAdqiiWDrDz2Lj_pnfsjzGIXKTou73wPseh6j55w,2646
79
79
  torchx/specs/test/components/__init__.py,sha256=J8qjUOysmcMAek2KFN13mViOXZxTYc5vCrF02t3VuFU,223
80
80
  torchx/specs/test/components/a/__init__.py,sha256=kdxEgnI8QBSBiuTjaB4qDD7JX84hWowyPWU4B2Cqe9A,561
@@ -82,8 +82,8 @@ torchx/specs/test/components/a/b/__init__.py,sha256=J8qjUOysmcMAek2KFN13mViOXZxT
82
82
  torchx/specs/test/components/a/b/c.py,sha256=FhixafzNqpS5zvggtWIWLxRd6HIxsOmct-d1Hs-rDoc,554
83
83
  torchx/specs/test/components/c/__init__.py,sha256=5CBMckkpqJUdxBQBYHGSsItqq1gj2V0UiCw02Qfq6MM,246
84
84
  torchx/specs/test/components/c/d.py,sha256=2AjE-FmQXJTw3hws66O83ToQPmjOEZLDf-jDAKrrUkQ,546
85
- torchx/tracker/__init__.py,sha256=u4Fjw4pf49ZLbzQ8mTj5p3Dp_gvnJKxNIwWY7WszZ8E,4365
86
- torchx/tracker/api.py,sha256=tQk8o8naMfmQVug0BBDiiVz_9SWVRdJpgyUjwytsFYE,11257
85
+ torchx/tracker/__init__.py,sha256=qo39aOa0Dz9zt4TtFkqPeIaH7MNqdAkFlGaOFiDLXTI,4375
86
+ torchx/tracker/api.py,sha256=WZ7TYdbSVx_5h5MlX9EwQLRpxmIf0oKdiQwQ0zvkO3o,11262
87
87
  torchx/tracker/mlflow.py,sha256=poeoIXVPzr2sxgi515fMGRH83KAFNL6XFILMh0EQ2Dw,14487
88
88
  torchx/tracker/backend/__init__.py,sha256=fE0IHi1JJpxsNVBNzWNee2thrNXFFRhY94c80RxNSIE,231
89
89
  torchx/tracker/backend/fsspec.py,sha256=528xKryBE27Rm_OHD7r2R6fmVAclknBtoy1s034Ny6c,10440
@@ -99,12 +99,12 @@ torchx/util/shlex.py,sha256=eXEKu8KC3zIcd8tEy9_s8Ds5oma8BORr-0VGWNpG2dk,463
99
99
  torchx/util/strings.py,sha256=7Ef1loz2IYMrzeJ6Lewywi5cBIc3X3g7lSPbT1Tn_z4,664
100
100
  torchx/util/types.py,sha256=E9dxAWQnsJkIDuHtg-poeOJ4etucSI_xP_Z5kNJX8uI,9229
101
101
  torchx/workspace/__init__.py,sha256=cZsKVvUWwDYcGhe6SCXQGBQfbk_yTnKEImOkI6xmu30,809
102
- torchx/workspace/api.py,sha256=Ct_75VU94fsH9Rf1WRe-wJGpVgl5O05S_Dq_t2ArJWA,11348
102
+ torchx/workspace/api.py,sha256=MGBQauBoH7wZdvXHXOx7JqefCF41rK0AHWF68IUwr4k,11276
103
103
  torchx/workspace/dir_workspace.py,sha256=npNW_IjUZm_yS5r-8hrRkH46ndDd9a_eApT64m1S1T4,2268
104
104
  torchx/workspace/docker_workspace.py,sha256=PFu2KQNVC-0p2aKJ-W_BKA9ZOmXdCY2ABEkCExp3udQ,10269
105
- torchx_nightly-2025.9.29.dist-info/LICENSE,sha256=WVHfXhFC0Ia8LTKt_nJVYobdqTJVg_4J3Crrfm2A8KQ,1721
106
- torchx_nightly-2025.9.29.dist-info/METADATA,sha256=YLOeBOqjePee2nesokuKjdVPPAgDT8AELa2-ytgxdh0,5003
107
- torchx_nightly-2025.9.29.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
108
- torchx_nightly-2025.9.29.dist-info/entry_points.txt,sha256=T328AMXeKI3JZnnxfkEew2ZcMN1oQDtkXjMz7lkV-P4,169
109
- torchx_nightly-2025.9.29.dist-info/top_level.txt,sha256=pxew3bc2gsiViS0zADs0jb6kC5v8o_Yy_85fhHj_J1A,7
110
- torchx_nightly-2025.9.29.dist-info/RECORD,,
105
+ torchx_nightly-2025.10.1.dist-info/LICENSE,sha256=WVHfXhFC0Ia8LTKt_nJVYobdqTJVg_4J3Crrfm2A8KQ,1721
106
+ torchx_nightly-2025.10.1.dist-info/METADATA,sha256=6utanW11HzSGBuD995u_wr6QRD7vTc-wV8JQfBrvJR0,5068
107
+ torchx_nightly-2025.10.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
108
+ torchx_nightly-2025.10.1.dist-info/entry_points.txt,sha256=T328AMXeKI3JZnnxfkEew2ZcMN1oQDtkXjMz7lkV-P4,169
109
+ torchx_nightly-2025.10.1.dist-info/top_level.txt,sha256=pxew3bc2gsiViS0zADs0jb6kC5v8o_Yy_85fhHj_J1A,7
110
+ torchx_nightly-2025.10.1.dist-info/RECORD,,