torchx-nightly 2023.10.21__py3-none-any.whl → 2025.12.24__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 (110) hide show
  1. torchx/__init__.py +2 -0
  2. torchx/{schedulers/ray/__init__.py → _version.py} +3 -1
  3. torchx/apps/serve/serve.py +2 -0
  4. torchx/apps/utils/booth_main.py +2 -0
  5. torchx/apps/utils/copy_main.py +2 -0
  6. torchx/apps/utils/process_monitor.py +2 -0
  7. torchx/cli/__init__.py +2 -0
  8. torchx/cli/argparse_util.py +38 -3
  9. torchx/cli/cmd_base.py +2 -0
  10. torchx/cli/cmd_cancel.py +2 -0
  11. torchx/cli/cmd_configure.py +2 -0
  12. torchx/cli/cmd_delete.py +30 -0
  13. torchx/cli/cmd_describe.py +2 -0
  14. torchx/cli/cmd_list.py +8 -4
  15. torchx/cli/cmd_log.py +6 -24
  16. torchx/cli/cmd_run.py +269 -45
  17. torchx/cli/cmd_runopts.py +2 -0
  18. torchx/cli/cmd_status.py +12 -1
  19. torchx/cli/cmd_tracker.py +3 -1
  20. torchx/cli/colors.py +2 -0
  21. torchx/cli/main.py +4 -0
  22. torchx/components/__init__.py +3 -8
  23. torchx/components/component_test_base.py +2 -0
  24. torchx/components/dist.py +18 -7
  25. torchx/components/integration_tests/component_provider.py +4 -2
  26. torchx/components/integration_tests/integ_tests.py +2 -0
  27. torchx/components/serve.py +2 -0
  28. torchx/components/structured_arg.py +7 -6
  29. torchx/components/utils.py +15 -4
  30. torchx/distributed/__init__.py +2 -4
  31. torchx/examples/apps/datapreproc/datapreproc.py +2 -0
  32. torchx/examples/apps/lightning/data.py +5 -3
  33. torchx/examples/apps/lightning/model.py +7 -6
  34. torchx/examples/apps/lightning/profiler.py +7 -4
  35. torchx/examples/apps/lightning/train.py +11 -2
  36. torchx/examples/torchx_out_of_sync_training.py +11 -0
  37. torchx/notebook.py +2 -0
  38. torchx/runner/__init__.py +2 -0
  39. torchx/runner/api.py +167 -60
  40. torchx/runner/config.py +43 -10
  41. torchx/runner/events/__init__.py +57 -13
  42. torchx/runner/events/api.py +14 -3
  43. torchx/runner/events/handlers.py +2 -0
  44. torchx/runtime/tracking/__init__.py +2 -0
  45. torchx/runtime/tracking/api.py +2 -0
  46. torchx/schedulers/__init__.py +16 -15
  47. torchx/schedulers/api.py +70 -14
  48. torchx/schedulers/aws_batch_scheduler.py +79 -5
  49. torchx/schedulers/aws_sagemaker_scheduler.py +598 -0
  50. torchx/schedulers/devices.py +17 -4
  51. torchx/schedulers/docker_scheduler.py +43 -11
  52. torchx/schedulers/ids.py +29 -23
  53. torchx/schedulers/kubernetes_mcad_scheduler.py +10 -8
  54. torchx/schedulers/kubernetes_scheduler.py +383 -38
  55. torchx/schedulers/local_scheduler.py +100 -27
  56. torchx/schedulers/lsf_scheduler.py +5 -4
  57. torchx/schedulers/slurm_scheduler.py +336 -20
  58. torchx/schedulers/streams.py +2 -0
  59. torchx/specs/__init__.py +89 -12
  60. torchx/specs/api.py +431 -32
  61. torchx/specs/builders.py +176 -38
  62. torchx/specs/file_linter.py +143 -57
  63. torchx/specs/finder.py +68 -28
  64. torchx/specs/named_resources_aws.py +254 -22
  65. torchx/specs/named_resources_generic.py +2 -0
  66. torchx/specs/overlays.py +106 -0
  67. torchx/specs/test/components/__init__.py +2 -0
  68. torchx/specs/test/components/a/__init__.py +2 -0
  69. torchx/specs/test/components/a/b/__init__.py +2 -0
  70. torchx/specs/test/components/a/b/c.py +2 -0
  71. torchx/specs/test/components/c/__init__.py +2 -0
  72. torchx/specs/test/components/c/d.py +2 -0
  73. torchx/tracker/__init__.py +12 -6
  74. torchx/tracker/api.py +15 -18
  75. torchx/tracker/backend/fsspec.py +2 -0
  76. torchx/util/cuda.py +2 -0
  77. torchx/util/datetime.py +2 -0
  78. torchx/util/entrypoints.py +39 -15
  79. torchx/util/io.py +2 -0
  80. torchx/util/log_tee_helpers.py +210 -0
  81. torchx/util/modules.py +65 -0
  82. torchx/util/session.py +42 -0
  83. torchx/util/shlex.py +2 -0
  84. torchx/util/strings.py +3 -1
  85. torchx/util/types.py +90 -29
  86. torchx/version.py +4 -2
  87. torchx/workspace/__init__.py +2 -0
  88. torchx/workspace/api.py +136 -6
  89. torchx/workspace/dir_workspace.py +2 -0
  90. torchx/workspace/docker_workspace.py +30 -2
  91. torchx_nightly-2025.12.24.dist-info/METADATA +167 -0
  92. torchx_nightly-2025.12.24.dist-info/RECORD +113 -0
  93. {torchx_nightly-2023.10.21.dist-info → torchx_nightly-2025.12.24.dist-info}/WHEEL +1 -1
  94. {torchx_nightly-2023.10.21.dist-info → torchx_nightly-2025.12.24.dist-info}/entry_points.txt +0 -1
  95. torchx/examples/pipelines/__init__.py +0 -0
  96. torchx/examples/pipelines/kfp/__init__.py +0 -0
  97. torchx/examples/pipelines/kfp/advanced_pipeline.py +0 -287
  98. torchx/examples/pipelines/kfp/dist_pipeline.py +0 -69
  99. torchx/examples/pipelines/kfp/intro_pipeline.py +0 -81
  100. torchx/pipelines/kfp/__init__.py +0 -28
  101. torchx/pipelines/kfp/adapter.py +0 -271
  102. torchx/pipelines/kfp/version.py +0 -17
  103. torchx/schedulers/gcp_batch_scheduler.py +0 -487
  104. torchx/schedulers/ray/ray_common.py +0 -22
  105. torchx/schedulers/ray/ray_driver.py +0 -307
  106. torchx/schedulers/ray_scheduler.py +0 -453
  107. torchx_nightly-2023.10.21.dist-info/METADATA +0 -174
  108. torchx_nightly-2023.10.21.dist-info/RECORD +0 -118
  109. {torchx_nightly-2023.10.21.dist-info → torchx_nightly-2025.12.24.dist-info/licenses}/LICENSE +0 -0
  110. {torchx_nightly-2023.10.21.dist-info → torchx_nightly-2025.12.24.dist-info}/top_level.txt +0 -0
@@ -1,118 +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=-YqNOx1XdcDhleqUJI0xgCOxZWj-h5yISBFIMPd-wm8,14428
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=uavcUeFDRnMP7cWAqcxR3ujJYi6JEsClz0_Rd4Dgxj4,9542
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=xAqaY8dufar3K8CvE6AQXGktrJiKL6hkaqsCMbsehXg,26891
59
- torchx/runner/config.py,sha256=rt2rpKa6E1pv7IqtU57O7AmSI65HkQCKXAeIOit4XEw,17171
60
- torchx/runner/events/__init__.py,sha256=2vn1wQk1DKIZT8jSiAkILivPN-eLVKv5HfhWR2_k1sg,4042
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=1gHJw5ufNybOUmvOleWZCx0eZ7qDMamnsGZpIp_qRcU,26851
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=pgPnlx5tzogPw6FuOkoaxBY-rVjEh3mWFP-yX5izGZ8,16206
72
- torchx/schedulers/ids.py,sha256=IGsJEbCYTdfKdU3MhKLQU6b7sWCJy5dlRV6JIL_9BlE,1783
73
- torchx/schedulers/kubernetes_mcad_scheduler.py,sha256=7oeXencgkMVgMbQwCEtMLTx_JbJdZQk7iPwXnT7GIo0,42903
74
- torchx/schedulers/kubernetes_scheduler.py,sha256=loKbNhDkR6MT_oAPoDAAIzULBTTbA8op9exABwBFFXw,27081
75
- torchx/schedulers/local_scheduler.py,sha256=QUxOLRN8CSmlEUlF_cCKveZeWcieXor2rAuAGtHNzfE,40133
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=7qpCGO_ccP6VpuH1dp-_gSaXG-t9rTVR-7sMUPTUxVs,34053
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=98XPgZLuT6a8Ou4cbdT9eL8iyOUm6Hz-kKX43q3-rIQ,6573
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=bnqiFZmrQoioeDlUkrzxFYzfbuf6OQvrlZmhtNekw8U,4206
97
- torchx/tracker/api.py,sha256=WRS3As_8YkxaL_enMz60wKba9cC_ynGIp8IQwNBbTTM,11263
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/shlex.py,sha256=KzyWektMeU3oXS3Z5mFkNSPLItBTszVcvQ3EYfOMUYA,448
107
- torchx/util/strings.py,sha256=7CZe5WKHa7IQ6DuJCYeJ5FapUC4Fd1OGeq1yZAmjluw,663
108
- torchx/util/types.py,sha256=6ASuDKGO91UU3DCSuWhPX_C03341tApLCQEByUz8xpY,7016
109
- torchx/workspace/__init__.py,sha256=KbGEzJqqXaIxALm_EQO64aw-fE7MeDMFXcpU1mY650I,783
110
- torchx/workspace/api.py,sha256=Ej6DR__mNWaVyZgoVNAAOloDy1kTD5X1jz7pRtoVf80,5464
111
- torchx/workspace/dir_workspace.py,sha256=Fz-hKIx0KN8iJf2BsthNj0NvTkWlxP6WFsElPs_BaT0,2253
112
- torchx/workspace/docker_workspace.py,sha256=Yd8ut26bNfjyJQnmH8ANOrflfr-4VKcnOrIjbi_XIUY,9208
113
- torchx_nightly-2023.10.21.dist-info/LICENSE,sha256=WVHfXhFC0Ia8LTKt_nJVYobdqTJVg_4J3Crrfm2A8KQ,1721
114
- torchx_nightly-2023.10.21.dist-info/METADATA,sha256=wzcqqypHTwLDWrBAaBihCpKYvnjYMZX-HfQHM00nmaM,5558
115
- torchx_nightly-2023.10.21.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
116
- torchx_nightly-2023.10.21.dist-info/entry_points.txt,sha256=3JYZFlX9aWzR-Gs_qsx1zq7mlqbFz6Mi9rQUULW8caI,170
117
- torchx_nightly-2023.10.21.dist-info/top_level.txt,sha256=pxew3bc2gsiViS0zADs0jb6kC5v8o_Yy_85fhHj_J1A,7
118
- torchx_nightly-2023.10.21.dist-info/RECORD,,