torchx-nightly 2025.1.21__py3-none-any.whl → 2025.1.23__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/specs/api.py +6 -1
- {torchx_nightly-2025.1.21.dist-info → torchx_nightly-2025.1.23.dist-info}/METADATA +1 -1
- {torchx_nightly-2025.1.21.dist-info → torchx_nightly-2025.1.23.dist-info}/RECORD +7 -7
- {torchx_nightly-2025.1.21.dist-info → torchx_nightly-2025.1.23.dist-info}/LICENSE +0 -0
- {torchx_nightly-2025.1.21.dist-info → torchx_nightly-2025.1.23.dist-info}/WHEEL +0 -0
- {torchx_nightly-2025.1.21.dist-info → torchx_nightly-2025.1.23.dist-info}/entry_points.txt +0 -0
- {torchx_nightly-2025.1.21.dist-info → torchx_nightly-2025.1.23.dist-info}/top_level.txt +0 -0
torchx/specs/api.py
CHANGED
|
@@ -948,7 +948,12 @@ class runopts:
|
|
|
948
948
|
for key, val in cfg_dict.items():
|
|
949
949
|
runopt_ = self.get(key)
|
|
950
950
|
if runopt_:
|
|
951
|
-
|
|
951
|
+
# Optional runopt cfg values default their value to None,
|
|
952
|
+
# but use `_type` to specify their type when provided.
|
|
953
|
+
# Make sure not to treat None's as lists/dictionaries
|
|
954
|
+
if val is None:
|
|
955
|
+
cfg[key] = val
|
|
956
|
+
elif runopt_.opt_type == List[str]:
|
|
952
957
|
cfg[key] = [str(v) for v in val]
|
|
953
958
|
elif runopt_.opt_type == Dict[str, str]:
|
|
954
959
|
cfg[key] = {str(k): str(v) for k, v in val.items()}
|
|
@@ -83,7 +83,7 @@ torchx/schedulers/ray/__init__.py,sha256=fE0IHi1JJpxsNVBNzWNee2thrNXFFRhY94c80Rx
|
|
|
83
83
|
torchx/schedulers/ray/ray_common.py,sha256=pyNYFvTKVwdjDAeCBNbPwAWwVNmlLOJWExfn90XY8u8,610
|
|
84
84
|
torchx/schedulers/ray/ray_driver.py,sha256=RdaCLfth16ky-5PDVOWRe_RuheWJu9xufWux2F9T7iw,12302
|
|
85
85
|
torchx/specs/__init__.py,sha256=T8xUCz7iVE6OsUL5P4Pzy2B8ZY_YinCVDwUer5Q-XPc,6179
|
|
86
|
-
torchx/specs/api.py,sha256=
|
|
86
|
+
torchx/specs/api.py,sha256=zKheYiwCXef5BlSCqQb3tjzL89GpvsEwcISRYZ7vjvc,37824
|
|
87
87
|
torchx/specs/builders.py,sha256=QDcQrnCO4bdSaiP0216XbCgTsnLutO_1_FW5jDiEIWI,9939
|
|
88
88
|
torchx/specs/file_linter.py,sha256=IeiomB1BgHUlT-ZsvGxar3llY63NOupfLBrOrD_---A,11860
|
|
89
89
|
torchx/specs/finder.py,sha256=MnwxG_UC4a-3X2wQ37ANEQR6D1TvriCLyuVYBh_-wuI,16249
|
|
@@ -115,9 +115,9 @@ torchx/workspace/__init__.py,sha256=FqN8AN4VhR1C_SBY10MggQvNZmyanbbuPuE-JCjkyUY,
|
|
|
115
115
|
torchx/workspace/api.py,sha256=PtDkGTC5lX03pRoYpuMz2KCmM1ZOycRP1UknqvNb97Y,6341
|
|
116
116
|
torchx/workspace/dir_workspace.py,sha256=npNW_IjUZm_yS5r-8hrRkH46ndDd9a_eApT64m1S1T4,2268
|
|
117
117
|
torchx/workspace/docker_workspace.py,sha256=PFu2KQNVC-0p2aKJ-W_BKA9ZOmXdCY2ABEkCExp3udQ,10269
|
|
118
|
-
torchx_nightly-2025.1.
|
|
119
|
-
torchx_nightly-2025.1.
|
|
120
|
-
torchx_nightly-2025.1.
|
|
121
|
-
torchx_nightly-2025.1.
|
|
122
|
-
torchx_nightly-2025.1.
|
|
123
|
-
torchx_nightly-2025.1.
|
|
118
|
+
torchx_nightly-2025.1.23.dist-info/LICENSE,sha256=WVHfXhFC0Ia8LTKt_nJVYobdqTJVg_4J3Crrfm2A8KQ,1721
|
|
119
|
+
torchx_nightly-2025.1.23.dist-info/METADATA,sha256=YqbJ76AnIXbSzh1oqj_M7Zdj5-pjn_cvKKhUUiIQIi4,6169
|
|
120
|
+
torchx_nightly-2025.1.23.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
121
|
+
torchx_nightly-2025.1.23.dist-info/entry_points.txt,sha256=T328AMXeKI3JZnnxfkEew2ZcMN1oQDtkXjMz7lkV-P4,169
|
|
122
|
+
torchx_nightly-2025.1.23.dist-info/top_level.txt,sha256=pxew3bc2gsiViS0zADs0jb6kC5v8o_Yy_85fhHj_J1A,7
|
|
123
|
+
torchx_nightly-2025.1.23.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|