torchx-nightly 2024.12.9__py3-none-any.whl → 2024.12.11__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/examples/apps/lightning/data.py +3 -3
- torchx/pipelines/kfp/adapter.py +3 -1
- torchx/schedulers/aws_batch_scheduler.py +2 -0
- torchx/schedulers/aws_sagemaker_scheduler.py +8 -2
- torchx/schedulers/ray/ray_driver.py +1 -1
- {torchx_nightly-2024.12.9.dist-info → torchx_nightly-2024.12.11.dist-info}/METADATA +1 -1
- {torchx_nightly-2024.12.9.dist-info → torchx_nightly-2024.12.11.dist-info}/RECORD +11 -11
- {torchx_nightly-2024.12.9.dist-info → torchx_nightly-2024.12.11.dist-info}/LICENSE +0 -0
- {torchx_nightly-2024.12.9.dist-info → torchx_nightly-2024.12.11.dist-info}/WHEEL +0 -0
- {torchx_nightly-2024.12.9.dist-info → torchx_nightly-2024.12.11.dist-info}/entry_points.txt +0 -0
- {torchx_nightly-2024.12.9.dist-info → torchx_nightly-2024.12.11.dist-info}/top_level.txt +0 -0
|
@@ -64,17 +64,17 @@ class ImageFolderSamplesDataset(datasets.ImageFolder):
|
|
|
64
64
|
# our trainer and other components that need to load data.
|
|
65
65
|
|
|
66
66
|
|
|
67
|
-
# pyre-fixme[13]: Attribute `test_ds` is never initialized.
|
|
68
|
-
# pyre-fixme[13]: Attribute `train_ds` is never initialized.
|
|
69
|
-
# pyre-fixme[13]: Attribute `val_ds` is never initialized.
|
|
70
67
|
class TinyImageNetDataModule(pl.LightningDataModule):
|
|
71
68
|
"""
|
|
72
69
|
TinyImageNetDataModule is a pytorch LightningDataModule for the tiny
|
|
73
70
|
imagenet dataset.
|
|
74
71
|
"""
|
|
75
72
|
|
|
73
|
+
# pyre-fixme[13]: Attribute `test_ds` is never initialized.
|
|
76
74
|
train_ds: ImageFolderSamplesDataset
|
|
75
|
+
# pyre-fixme[13]: Attribute `train_ds` is never initialized.
|
|
77
76
|
val_ds: ImageFolderSamplesDataset
|
|
77
|
+
# pyre-fixme[13]: Attribute `val_ds` is never initialized.
|
|
78
78
|
test_ds: ImageFolderSamplesDataset
|
|
79
79
|
|
|
80
80
|
def __init__(
|
torchx/pipelines/kfp/adapter.py
CHANGED
|
@@ -50,7 +50,9 @@ def component_spec_from_app(app: api.AppDef) -> Tuple[str, api.Role]:
|
|
|
50
50
|
|
|
51
51
|
role = app.roles[0]
|
|
52
52
|
assert (
|
|
53
|
-
role.num_replicas
|
|
53
|
+
role.num_replicas
|
|
54
|
+
== 1
|
|
55
|
+
# pyre-fixme[16]: `AppDef` has no attribute `num_replicas`.
|
|
54
56
|
), f"KFP adapter only supports one replica, got {app.num_replicas}"
|
|
55
57
|
|
|
56
58
|
command = [role.entrypoint, *role.args]
|
|
@@ -809,6 +809,8 @@ class AWSBatchScheduler(DockerWorkspaceMixin, Scheduler[AWSBatchOpts]):
|
|
|
809
809
|
startFromHead=True,
|
|
810
810
|
**args,
|
|
811
811
|
)
|
|
812
|
+
# pyre-fixme[66]: Exception handler type annotation `unknown` must
|
|
813
|
+
# extend BaseException.
|
|
812
814
|
except self._log_client.exceptions.ResourceNotFoundException:
|
|
813
815
|
return [] # noqa: B901
|
|
814
816
|
if response["nextForwardToken"] == next_token:
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
|
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
# All rights reserved.
|
|
4
|
+
#
|
|
5
|
+
# This source code is licensed under the BSD-style license found in the
|
|
6
|
+
# LICENSE file in the root directory of this source tree.
|
|
7
|
+
|
|
2
8
|
|
|
3
9
|
import getpass
|
|
4
10
|
import os
|
|
@@ -261,9 +267,9 @@ class AWSSageMakerScheduler(DockerWorkspaceMixin, Scheduler[AWSSageMakerOpts]):
|
|
|
261
267
|
raise ValueError(
|
|
262
268
|
f"{key} is controlled by aws_sagemaker_scheduler and is set to {job_def[key]}"
|
|
263
269
|
)
|
|
264
|
-
value = cfg.get(key) #
|
|
270
|
+
value = cfg.get(key) # type: ignore
|
|
265
271
|
if value is not None:
|
|
266
|
-
job_def[key] = value
|
|
272
|
+
job_def[key] = value # type: ignore
|
|
267
273
|
|
|
268
274
|
req = AWSSageMakerJob(
|
|
269
275
|
job_name=job_name,
|
|
@@ -116,7 +116,7 @@ def load_actor_json(filename: str) -> List[RayActor]:
|
|
|
116
116
|
return actors
|
|
117
117
|
|
|
118
118
|
|
|
119
|
-
def create_placement_group_async(replicas: List[RayActor]) -> PlacementGroup:
|
|
119
|
+
def create_placement_group_async(replicas: List[RayActor]) -> PlacementGroup: # type: ignore
|
|
120
120
|
"""return a placement group reference, the corresponding placement group could be scheduled or pending"""
|
|
121
121
|
bundles = []
|
|
122
122
|
for replica in replicas:
|
|
@@ -41,7 +41,7 @@ torchx/examples/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
|
41
41
|
torchx/examples/apps/datapreproc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
42
|
torchx/examples/apps/datapreproc/datapreproc.py,sha256=cu88O_WZgqZ6g7jVIG2kagAVbJ4oPMzTH03_H65w8RU,4317
|
|
43
43
|
torchx/examples/apps/lightning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
|
-
torchx/examples/apps/lightning/data.py,sha256=
|
|
44
|
+
torchx/examples/apps/lightning/data.py,sha256=kSv_DFqtFVkNjZ46HT7GApImc9lMD7liy929dUrFWwM,6610
|
|
45
45
|
torchx/examples/apps/lightning/interpret.py,sha256=Hd3kE5a6FyhxCmJBfTzb4Tlj518zhX8V0XvZfzu4nqE,5256
|
|
46
46
|
torchx/examples/apps/lightning/model.py,sha256=ppj8pYkJ1Zj4kZX6JXULGgx3sYVfNIQ24OuDYXc5lYo,3947
|
|
47
47
|
torchx/examples/apps/lightning/profiler.py,sha256=SSSihnwjeUTkBoz0E3qn1b-wbkfUIowscx2ND_37zyw,1915
|
|
@@ -53,7 +53,7 @@ torchx/examples/pipelines/kfp/dist_pipeline.py,sha256=xFn59P1S22o2zOJ2LhlIkhjYH3
|
|
|
53
53
|
torchx/examples/pipelines/kfp/intro_pipeline.py,sha256=oWdMHPLWf5nKRm0hS7psF0yUp8Tf7tfR-Sm3YuUCmWk,2776
|
|
54
54
|
torchx/pipelines/__init__.py,sha256=2MbRVk5xwRjg-d2qPemeXpEhDsocMQumPQ53lsesZAI,606
|
|
55
55
|
torchx/pipelines/kfp/__init__.py,sha256=8iJ8lql_fxwuk9VCYSxXnX6tPL228fB5mDZpOs-kpn4,736
|
|
56
|
-
torchx/pipelines/kfp/adapter.py,sha256=
|
|
56
|
+
torchx/pipelines/kfp/adapter.py,sha256=5GeHULjb1kxG6wJtYVLpNkgdzUi4iYEaR42VFOwT6fY,9045
|
|
57
57
|
torchx/pipelines/kfp/version.py,sha256=mYBxd6bm4MeR34D--xo-JLQ9wHeAl_ZQLwbItCf9tr0,539
|
|
58
58
|
torchx/runner/__init__.py,sha256=x8Sz7s_tLxPgJgvWIhK4ju9BNZU61uBFywGwDY6CqJs,315
|
|
59
59
|
torchx/runner/api.py,sha256=vssTNIDB0O28QchZOowIvEcBE9GK1EDcmFu0pBu5vTU,29324
|
|
@@ -66,8 +66,8 @@ torchx/runtime/tracking/__init__.py,sha256=dYnAPnrXYREfPXkpHhdOFkcYIODWEbA13PdD-
|
|
|
66
66
|
torchx/runtime/tracking/api.py,sha256=SmUQyUKZqG3KlAhT7CJOGqRz1O274E4m63wQeOVq3CU,5472
|
|
67
67
|
torchx/schedulers/__init__.py,sha256=M9SBZiNdE3KI_yc1-BiRtAetfTgtX07uKkuvGUeZQLU,2230
|
|
68
68
|
torchx/schedulers/api.py,sha256=s2hI87uAWtU2SHMNBKjAqelzQU_GKp_BjcxdtjVVDDk,14155
|
|
69
|
-
torchx/schedulers/aws_batch_scheduler.py,sha256=
|
|
70
|
-
torchx/schedulers/aws_sagemaker_scheduler.py,sha256=
|
|
69
|
+
torchx/schedulers/aws_batch_scheduler.py,sha256=8jRTmi5gtqyKUQfhMRqCQqNVM0drXdu8RS0xUfZby48,28091
|
|
70
|
+
torchx/schedulers/aws_sagemaker_scheduler.py,sha256=x33J_tQFpRr_AUv5dWf1qxqG0dbmIjaqFHyrSnHWijw,20921
|
|
71
71
|
torchx/schedulers/devices.py,sha256=RjVcu22ZRl_9OKtOtmA1A3vNXgu2qD6A9ST0L0Hsg4I,1734
|
|
72
72
|
torchx/schedulers/docker_scheduler.py,sha256=K6dVjhl7yGoHu-OolcdTU6bZ_NDat5bK9WbU-EwPcKY,16753
|
|
73
73
|
torchx/schedulers/gcp_batch_scheduler.py,sha256=dlUfvjfMuQiRcSXQAdwxqdadwPhOf82L5u-ejRWtFgE,16226
|
|
@@ -81,7 +81,7 @@ torchx/schedulers/slurm_scheduler.py,sha256=_57XhN9ggFaD6ZG9cPXkAlcHoF-R5mPmAvqP
|
|
|
81
81
|
torchx/schedulers/streams.py,sha256=8_SLezgnWgfv_zXUsJCUM34-h2dtv25NmZuxEwkzmxw,2007
|
|
82
82
|
torchx/schedulers/ray/__init__.py,sha256=fE0IHi1JJpxsNVBNzWNee2thrNXFFRhY94c80RxNSIE,231
|
|
83
83
|
torchx/schedulers/ray/ray_common.py,sha256=pyNYFvTKVwdjDAeCBNbPwAWwVNmlLOJWExfn90XY8u8,610
|
|
84
|
-
torchx/schedulers/ray/ray_driver.py,sha256=
|
|
84
|
+
torchx/schedulers/ray/ray_driver.py,sha256=RdaCLfth16ky-5PDVOWRe_RuheWJu9xufWux2F9T7iw,12302
|
|
85
85
|
torchx/specs/__init__.py,sha256=T8xUCz7iVE6OsUL5P4Pzy2B8ZY_YinCVDwUer5Q-XPc,6179
|
|
86
86
|
torchx/specs/api.py,sha256=EI1tXPfDrz8dAyjJsuNK9mL4femS44lUuJFJUCW_oSc,37540
|
|
87
87
|
torchx/specs/builders.py,sha256=QDcQrnCO4bdSaiP0216XbCgTsnLutO_1_FW5jDiEIWI,9939
|
|
@@ -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-2024.12.
|
|
119
|
-
torchx_nightly-2024.12.
|
|
120
|
-
torchx_nightly-2024.12.
|
|
121
|
-
torchx_nightly-2024.12.
|
|
122
|
-
torchx_nightly-2024.12.
|
|
123
|
-
torchx_nightly-2024.12.
|
|
118
|
+
torchx_nightly-2024.12.11.dist-info/LICENSE,sha256=WVHfXhFC0Ia8LTKt_nJVYobdqTJVg_4J3Crrfm2A8KQ,1721
|
|
119
|
+
torchx_nightly-2024.12.11.dist-info/METADATA,sha256=xYihzvn_J6rAY2zMDNxTqnwvdRFojvOnT96hBaZEc18,6170
|
|
120
|
+
torchx_nightly-2024.12.11.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
121
|
+
torchx_nightly-2024.12.11.dist-info/entry_points.txt,sha256=T328AMXeKI3JZnnxfkEew2ZcMN1oQDtkXjMz7lkV-P4,169
|
|
122
|
+
torchx_nightly-2024.12.11.dist-info/top_level.txt,sha256=pxew3bc2gsiViS0zADs0jb6kC5v8o_Yy_85fhHj_J1A,7
|
|
123
|
+
torchx_nightly-2024.12.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|