dpdispatcher 0.6.1__py3-none-any.whl → 1.0.0__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.
- dpdispatcher/_version.py +22 -4
- dpdispatcher/base_context.py +60 -1
- dpdispatcher/contexts/__init__.py +1 -0
- dpdispatcher/contexts/dp_cloud_server_context.py +8 -1
- dpdispatcher/contexts/hdfs_context.py +16 -11
- dpdispatcher/contexts/lazy_local_context.py +2 -19
- dpdispatcher/contexts/local_context.py +77 -43
- dpdispatcher/contexts/openapi_context.py +78 -14
- dpdispatcher/contexts/ssh_context.py +117 -98
- dpdispatcher/dlog.py +9 -5
- dpdispatcher/dpcloudserver/__init__.py +0 -0
- dpdispatcher/dpcloudserver/client.py +7 -0
- dpdispatcher/dpdisp.py +21 -0
- dpdispatcher/entrypoints/run.py +9 -0
- dpdispatcher/entrypoints/submission.py +21 -1
- dpdispatcher/machine.py +15 -4
- dpdispatcher/machines/JH_UniScheduler.py +171 -0
- dpdispatcher/machines/__init__.py +1 -0
- dpdispatcher/machines/distributed_shell.py +6 -10
- dpdispatcher/machines/fugaku.py +9 -12
- dpdispatcher/machines/lsf.py +3 -9
- dpdispatcher/machines/openapi.py +48 -15
- dpdispatcher/machines/pbs.py +183 -20
- dpdispatcher/machines/shell.py +7 -16
- dpdispatcher/machines/slurm.py +30 -42
- dpdispatcher/run.py +172 -0
- dpdispatcher/submission.py +5 -14
- dpdispatcher/utils/dpcloudserver/client.py +10 -6
- dpdispatcher/utils/hdfs_cli.py +10 -19
- dpdispatcher/utils/utils.py +21 -7
- {dpdispatcher-0.6.1.dist-info → dpdispatcher-1.0.0.dist-info}/METADATA +35 -29
- dpdispatcher-1.0.0.dist-info/RECORD +49 -0
- {dpdispatcher-0.6.1.dist-info → dpdispatcher-1.0.0.dist-info}/WHEEL +1 -1
- dpdispatcher-0.6.1.dist-info/RECORD +0 -44
- {dpdispatcher-0.6.1.dist-info → dpdispatcher-1.0.0.dist-info}/entry_points.txt +0 -0
- {dpdispatcher-0.6.1.dist-info → dpdispatcher-1.0.0.dist-info/licenses}/LICENSE +0 -0
- {dpdispatcher-0.6.1.dist-info → dpdispatcher-1.0.0.dist-info}/top_level.txt +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: dpdispatcher
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Summary: Generate HPC scheduler systems jobs input scripts, submit these scripts to HPC systems, and poke until they finish
|
|
5
5
|
Author: DeepModeling
|
|
6
|
-
License:
|
|
6
|
+
License: GNU LESSER GENERAL PUBLIC LICENSE
|
|
7
7
|
Version 3, 29 June 2007
|
|
8
8
|
|
|
9
9
|
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
|
@@ -172,7 +172,7 @@ License: GNU LESSER GENERAL PUBLIC LICENSE
|
|
|
172
172
|
Project-URL: Homepage, https://github.com/deepmodeling/dpdispatcher
|
|
173
173
|
Project-URL: documentation, https://docs.deepmodeling.com/projects/dpdispatcher
|
|
174
174
|
Project-URL: repository, https://github.com/deepmodeling/dpdispatcher
|
|
175
|
-
Keywords: dispatcher,hpc,slurm,lsf,pbs,ssh
|
|
175
|
+
Keywords: dispatcher,hpc,slurm,lsf,pbs,ssh,jh_unischeduler
|
|
176
176
|
Classifier: Programming Language :: Python :: 3.7
|
|
177
177
|
Classifier: Programming Language :: Python :: 3.8
|
|
178
178
|
Classifier: Programming Language :: Python :: 3.9
|
|
@@ -186,31 +186,33 @@ Requires-Python: >=3.7
|
|
|
186
186
|
Description-Content-Type: text/markdown
|
|
187
187
|
License-File: LICENSE
|
|
188
188
|
Requires-Dist: paramiko
|
|
189
|
-
Requires-Dist: dargs
|
|
189
|
+
Requires-Dist: dargs>=0.4.1
|
|
190
190
|
Requires-Dist: requests
|
|
191
|
-
Requires-Dist: tqdm
|
|
191
|
+
Requires-Dist: tqdm>=4.9.0
|
|
192
|
+
Requires-Dist: typing_extensions; python_version < "3.7"
|
|
192
193
|
Requires-Dist: pyyaml
|
|
193
|
-
Requires-Dist:
|
|
194
|
-
Provides-Extra: bohrium
|
|
195
|
-
Requires-Dist: oss2 ; extra == 'bohrium'
|
|
196
|
-
Requires-Dist: tqdm ; extra == 'bohrium'
|
|
197
|
-
Requires-Dist: bohrium-sdk ; extra == 'bohrium'
|
|
198
|
-
Provides-Extra: cloudserver
|
|
199
|
-
Requires-Dist: oss2 ; extra == 'cloudserver'
|
|
200
|
-
Requires-Dist: tqdm ; extra == 'cloudserver'
|
|
201
|
-
Requires-Dist: bohrium-sdk ; extra == 'cloudserver'
|
|
194
|
+
Requires-Dist: tomli>=1.1.0; python_version < "3.11"
|
|
202
195
|
Provides-Extra: docs
|
|
203
|
-
Requires-Dist: sphinx
|
|
204
|
-
Requires-Dist: myst-parser
|
|
205
|
-
Requires-Dist: sphinx-
|
|
206
|
-
Requires-Dist: numpydoc
|
|
207
|
-
Requires-Dist: deepmodeling-sphinx
|
|
208
|
-
Requires-Dist: dargs
|
|
209
|
-
Requires-Dist: sphinx-argparse
|
|
196
|
+
Requires-Dist: sphinx; extra == "docs"
|
|
197
|
+
Requires-Dist: myst-parser; extra == "docs"
|
|
198
|
+
Requires-Dist: sphinx-book-theme; extra == "docs"
|
|
199
|
+
Requires-Dist: numpydoc; extra == "docs"
|
|
200
|
+
Requires-Dist: deepmodeling-sphinx>=0.3.0; extra == "docs"
|
|
201
|
+
Requires-Dist: dargs>=0.3.1; extra == "docs"
|
|
202
|
+
Requires-Dist: sphinx-argparse<0.5.0; extra == "docs"
|
|
203
|
+
Provides-Extra: cloudserver
|
|
204
|
+
Requires-Dist: oss2; extra == "cloudserver"
|
|
205
|
+
Requires-Dist: tqdm; extra == "cloudserver"
|
|
206
|
+
Requires-Dist: bohrium-sdk; extra == "cloudserver"
|
|
207
|
+
Provides-Extra: bohrium
|
|
208
|
+
Requires-Dist: oss2; extra == "bohrium"
|
|
209
|
+
Requires-Dist: tqdm; extra == "bohrium"
|
|
210
|
+
Requires-Dist: bohrium-sdk; extra == "bohrium"
|
|
210
211
|
Provides-Extra: gui
|
|
211
|
-
Requires-Dist: dpgui
|
|
212
|
+
Requires-Dist: dpgui; extra == "gui"
|
|
212
213
|
Provides-Extra: test
|
|
213
|
-
Requires-Dist: dpgui
|
|
214
|
+
Requires-Dist: dpgui; extra == "test"
|
|
215
|
+
Dynamic: license-file
|
|
214
216
|
|
|
215
217
|
# DPDispatcher
|
|
216
218
|
|
|
@@ -220,11 +222,19 @@ Requires-Dist: dpgui ; extra == 'test'
|
|
|
220
222
|
[](https://dpdispatcher.readthedocs.io/)
|
|
221
223
|
|
|
222
224
|
DPDispatcher is a Python package used to generate HPC (High-Performance Computing) scheduler systems (Slurm/PBS/LSF/Bohrium) jobs input scripts, submit them to HPC systems, and poke until they finish.
|
|
223
|
-
|
|
225
|
+
|
|
224
226
|
DPDispatcher will monitor (poke) until these jobs finish and download the results files (if these jobs are running on remote systems connected by SSH).
|
|
225
227
|
|
|
226
228
|
For more information, check the [documentation](https://dpdispatcher.readthedocs.io/).
|
|
227
229
|
|
|
230
|
+
## Credits
|
|
231
|
+
|
|
232
|
+
Please cite the following paper if you use this project in your work:
|
|
233
|
+
|
|
234
|
+
- Fengbo Yuan, Zhaohan Ding, Yun-Pei Liu, Kai Cao, Jiahao Fan, Cao Thang Nguyen, Yuzhi Zhang, Haidi Wang, Yixiao Chen, Jiameng Huang, Tongqi Wen, Mingkang Liu, Yifan Li, Yong-Bin Zhuang, Hao Yu, Ping Tuo, Yaotang Zhang, Yibo Wang, Linfeng Zhang, Han Wang, Jinzhe Zeng, DPDispatcher: Scalable HPC Task Scheduling for AI-Driven Science, _J. Chem. Inf. Model._, 2025, DOI: [10.1021/acs.jcim.5c02081](https://doi.org/10.1021/acs.jcim.5c02081). [](https://badge.dimensions.ai/details/doi/10.1021/acs.jcim.5c02081)
|
|
235
|
+
|
|
236
|
+
This project was separated out from the [DP-GEN](https://github.com/deepmodeling/dpgen) project (Section 3.3 in [its paper](https://doi.org/10.1016/j.cpc.2020.107206)) to be used by more workflow software.
|
|
237
|
+
|
|
228
238
|
## Installation
|
|
229
239
|
|
|
230
240
|
DPDispatcher can be installed by `pip`:
|
|
@@ -247,7 +257,3 @@ See [Getting Started](https://dpdispatcher.readthedocs.io/en/latest/getting-star
|
|
|
247
257
|
|
|
248
258
|
DPDispatcher is maintained by Deep Modeling's developers and welcomes other people.
|
|
249
259
|
See [Contributing Guide](CONTRIBUTING.md) to become a contributor! 🤓
|
|
250
|
-
|
|
251
|
-
## References
|
|
252
|
-
|
|
253
|
-
DPDispatcher is derivated from the [DP-GEN](https://github.com/deepmodeling/dpgen) package. To mention DPDispatcher in a scholarly publication, please read Section 3.3 in the [DP-GEN paper](https://doi.org/10.1016/j.cpc.2020.107206).
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
dpdispatcher/__init__.py,sha256=CLZP_N5CTp14ujWCykEHuJjoIfKR6CwrclXhjWUgNoE,517
|
|
2
|
+
dpdispatcher/__main__.py,sha256=BFhG-mSBzVZUEezQJqXWZnt2WsnhAHT_zpT8Y6gpOz0,116
|
|
3
|
+
dpdispatcher/_version.py,sha256=vLA4ITz09S-S435nq6yTF6l3qiSz6w4euS1rOxXgd1M,704
|
|
4
|
+
dpdispatcher/arginfo.py,sha256=pNaxYIE6ahBidpR7OCKZdw8iGt003uTXGSlVzwiuvRg,188
|
|
5
|
+
dpdispatcher/base_context.py,sha256=W4eWDWVzYeL6EuEkivmJp-_h_B2mV9PtRWc09l1_Qzc,5242
|
|
6
|
+
dpdispatcher/dlog.py,sha256=QJKAwB6gV3Zb6zQUL9dZ_uIoTIEy9Z7ecmVQ-8WNmD8,1081
|
|
7
|
+
dpdispatcher/dpdisp.py,sha256=jhuTmwPY7KBF4WukaQomEwZcfYoISaMbKwuxdDGSluc,4206
|
|
8
|
+
dpdispatcher/machine.py,sha256=bW4oEpmDKwMHrMESFMgQbUxG3N1xUh3Z4NRY1uxz73I,16691
|
|
9
|
+
dpdispatcher/run.py,sha256=tFHbJAioXXpgHTE5bhRRAuc8w7cX1ET9SBbiAg3Rw-I,5382
|
|
10
|
+
dpdispatcher/submission.py,sha256=zLzdKJkMXhvaicD2el33NxDHP_9LL29HBombxR1l-Sw,48086
|
|
11
|
+
dpdispatcher/contexts/__init__.py,sha256=jlvcIppmUnS39yBlkZEDvIQFV-j_BR75ZTbZALF_RB0,336
|
|
12
|
+
dpdispatcher/contexts/dp_cloud_server_context.py,sha256=pdzQuG-j8sdNsindqwStWwu6OA0fZauCtj7FyWh_014,12491
|
|
13
|
+
dpdispatcher/contexts/hdfs_context.py,sha256=mYQzXMZ4A9EjjWBAH3Ba6HOErUhMMwCsKxOjpd5R57Y,9105
|
|
14
|
+
dpdispatcher/contexts/lazy_local_context.py,sha256=IyDBIKGRz0Ctur4VX1zA78kMi2lf6ZNRcZm_RnFkZSk,5082
|
|
15
|
+
dpdispatcher/contexts/local_context.py,sha256=VbaSXGAc_EDMT0K5WV_flBF0bX87ntrwO_hq_Bkcb04,14590
|
|
16
|
+
dpdispatcher/contexts/openapi_context.py,sha256=LecqP_8V3iCmjM0vUCBO8NrQgbtozN9L_aMjIU-T0xI,12148
|
|
17
|
+
dpdispatcher/contexts/ssh_context.py,sha256=0Ah3fdgq0uZxWh4kLS6UbVmaQFgCZ2bsZTwTXVa_k-M,39048
|
|
18
|
+
dpdispatcher/dpcloudserver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
dpdispatcher/dpcloudserver/client.py,sha256=k1niKjG6zFnMtHn_UuCjYoOcMju3o3PV-GdyVLr5-KM,165
|
|
20
|
+
dpdispatcher/entrypoints/__init__.py,sha256=exKSFT3j2oCerGwtI8WbHQK-D0K-CyifocRji1xntT4,20
|
|
21
|
+
dpdispatcher/entrypoints/gui.py,sha256=29lMXqbmSRbLj4rfBv7Jnw89NLU9syTB88IUP6IRJsU,830
|
|
22
|
+
dpdispatcher/entrypoints/run.py,sha256=tRkHfeAktV6gF31yb2MVOSTlpNGZFw3N0jHBmM1YfIg,175
|
|
23
|
+
dpdispatcher/entrypoints/submission.py,sha256=ikVwIZAQL0SsYO5xaMIdKXgO6qtc05w1vqmvtG7Nk5M,3401
|
|
24
|
+
dpdispatcher/machines/JH_UniScheduler.py,sha256=6A4lnZUIbsR501STkXyKEJCVaq-iJguzlfVuHq9ZRf4,5698
|
|
25
|
+
dpdispatcher/machines/__init__.py,sha256=tOQuPUlW1Ab4qcC0oSAIyDjZA_WyE67h_EIxPCWGhys,336
|
|
26
|
+
dpdispatcher/machines/distributed_shell.py,sha256=c0-lGeGz_M-PY2gPciT-uYZLQht5XTMaxJSNxkbMffc,7489
|
|
27
|
+
dpdispatcher/machines/dp_cloud_server.py,sha256=SR69gsFb2BvOQCW1QnWfP3cQvu_qHLJNsycp5wzosJU,11706
|
|
28
|
+
dpdispatcher/machines/fugaku.py,sha256=BlaUfgHoGABROuZeT5byr12rXCVCqahXISL57SUObX0,4256
|
|
29
|
+
dpdispatcher/machines/lsf.py,sha256=BH-lvXGkoCOAYJWAX7boE1TQtPfyMsRjmShIdnZ-MBE,7838
|
|
30
|
+
dpdispatcher/machines/openapi.py,sha256=dqIOxuFyqYszgwqn7m-dTTmghRReS72yoHnDE0oHAw8,10232
|
|
31
|
+
dpdispatcher/machines/pbs.py,sha256=9QsOKxyGc4fPRxBmFhQ1rlNzRlpmbSe6WvvkZj_0Q0o,12553
|
|
32
|
+
dpdispatcher/machines/shell.py,sha256=hZwrIsT-GzXToCobrrmxY0GBoNy0BEH4oTK5MpQE1H4,4739
|
|
33
|
+
dpdispatcher/machines/slurm.py,sha256=Rf8aV_HxpSLiQ5WC-8nUoGXjAaPsttrGu9ZV6ijYsXg,15355
|
|
34
|
+
dpdispatcher/utils/__init__.py,sha256=fwvwkMf7DFNQkNBiIce8Y8gRA6FhICwKjkKiXu_BEJg,13
|
|
35
|
+
dpdispatcher/utils/hdfs_cli.py,sha256=a1a9PJAzt3wsTcdaSw_oD1vcNw59pMooxpAHjYOaaGA,5209
|
|
36
|
+
dpdispatcher/utils/job_status.py,sha256=Eszs4TPLfszCuf6zLaFonf25feXDUguF28spYOjJpQE,233
|
|
37
|
+
dpdispatcher/utils/record.py,sha256=c8jdPmCuLzRmFo_jOjR0j9zFR1EWX3NSHVuPEIYCycg,2147
|
|
38
|
+
dpdispatcher/utils/utils.py,sha256=CSDzc3VhoF8HvEMaBiH-CSk6WnKFeORXzYcKHhBA4Dg,5940
|
|
39
|
+
dpdispatcher/utils/dpcloudserver/__init__.py,sha256=FnX9HH-2dXADluNfucg98JPMfruMoBpN9ER9lZkVQvQ,49
|
|
40
|
+
dpdispatcher/utils/dpcloudserver/client.py,sha256=BKKZyY5VblkIace2muFsvSX_7uEgM8E_IZBXaPtaT4I,12414
|
|
41
|
+
dpdispatcher/utils/dpcloudserver/config.py,sha256=NteQzf1OeEkz2UbkXHHQ0B72cUu23zLVzpM9Yh4v1Cc,559
|
|
42
|
+
dpdispatcher/utils/dpcloudserver/retcode.py,sha256=1qAF8gFZx55u2sO8KbtYSIIrjcO-IGufEUlwbkSfC1g,721
|
|
43
|
+
dpdispatcher/utils/dpcloudserver/zip_file.py,sha256=f9WrlktwHW0YipaWg5Y0kxjMZlhD1cJYa6EUpvu4Cro,2611
|
|
44
|
+
dpdispatcher-1.0.0.dist-info/licenses/LICENSE,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
|
|
45
|
+
dpdispatcher-1.0.0.dist-info/METADATA,sha256=FpiEXp0h_6Pal9rrpsklmT0Cm4fPImiwwv8vD0Gyw8w,13451
|
|
46
|
+
dpdispatcher-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
47
|
+
dpdispatcher-1.0.0.dist-info/entry_points.txt,sha256=NRHUV0IU_u7_XtcmmEDnVzAcUmurhiEAGwENckrajo4,233
|
|
48
|
+
dpdispatcher-1.0.0.dist-info/top_level.txt,sha256=35jAQoXY-b-e9fJ1_mxhZUiaCoJNt1ZI7mpFRf07Qjs,13
|
|
49
|
+
dpdispatcher-1.0.0.dist-info/RECORD,,
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
dpdispatcher/__init__.py,sha256=CLZP_N5CTp14ujWCykEHuJjoIfKR6CwrclXhjWUgNoE,517
|
|
2
|
-
dpdispatcher/__main__.py,sha256=BFhG-mSBzVZUEezQJqXWZnt2WsnhAHT_zpT8Y6gpOz0,116
|
|
3
|
-
dpdispatcher/_version.py,sha256=lgiCYGSijhLK71WmuudWf_AyhNAutwQWx2V8bV6a5VQ,411
|
|
4
|
-
dpdispatcher/arginfo.py,sha256=pNaxYIE6ahBidpR7OCKZdw8iGt003uTXGSlVzwiuvRg,188
|
|
5
|
-
dpdispatcher/base_context.py,sha256=NvaC_RHyspxq412z-eCq4Zn8-szZxvn8K6OkXvx7l4Y,3615
|
|
6
|
-
dpdispatcher/dlog.py,sha256=ndh12teQBbJRybXd8UjEmAi6QTsAXajRicDj5mAH5h0,799
|
|
7
|
-
dpdispatcher/dpdisp.py,sha256=YuGb-HWLsDfSO2c7GH0eM20ciojGbx3yq9oZHP7u4yc,3498
|
|
8
|
-
dpdispatcher/machine.py,sha256=XFRH41gNCex_qs9gbg-S88_qab3_UAGfxKWUPxoipCM,16140
|
|
9
|
-
dpdispatcher/submission.py,sha256=mVAHBlT0a3_1PtsEvvhvwNPkAhgLiBXXemX64BcwizU,48447
|
|
10
|
-
dpdispatcher/contexts/__init__.py,sha256=s5M0ZJSrPttSyLdBwKD2m3W7a5AbYZdPB7IAND2j7EY,335
|
|
11
|
-
dpdispatcher/contexts/dp_cloud_server_context.py,sha256=6XK0B2sLGEDeZmV2SZzQdVrMcWAWYZVLLK-IaShEXIY,12245
|
|
12
|
-
dpdispatcher/contexts/hdfs_context.py,sha256=GJs_vmDCjTsnbfTdXpFTfpWTYXnZTDkEO2UJIdpV5F4,8908
|
|
13
|
-
dpdispatcher/contexts/lazy_local_context.py,sha256=F8abWAJRY1Ewx1sErINKN1ltWerXzeCcJgjTvLvucKE,5696
|
|
14
|
-
dpdispatcher/contexts/local_context.py,sha256=7CoGzcX-RU6cpmSYcf4wMwncYaFVUb8Ljj4ksfXcx4s,13678
|
|
15
|
-
dpdispatcher/contexts/openapi_context.py,sha256=DXaMS10SXN3VKEeEdzQyfOgRwUyHRJVCJHd2fKKdsmA,9499
|
|
16
|
-
dpdispatcher/contexts/ssh_context.py,sha256=1UbMIFpSGBcg3H1My4cx5vjAALvaxlZxWOcXwoX6Ff0,38597
|
|
17
|
-
dpdispatcher/entrypoints/__init__.py,sha256=exKSFT3j2oCerGwtI8WbHQK-D0K-CyifocRji1xntT4,20
|
|
18
|
-
dpdispatcher/entrypoints/gui.py,sha256=29lMXqbmSRbLj4rfBv7Jnw89NLU9syTB88IUP6IRJsU,830
|
|
19
|
-
dpdispatcher/entrypoints/submission.py,sha256=R2DXUGXTsk0Jw2y5Wjby40R5dxzXeqr4gn33ov6mdAI,2751
|
|
20
|
-
dpdispatcher/machines/__init__.py,sha256=9kSYkz2w3flp00IrHWTEwvoFGrathQAT3tvbieye83c,335
|
|
21
|
-
dpdispatcher/machines/distributed_shell.py,sha256=7avNcoOzEj7UcJuKl6b1ka2bj5dixcJaMlZK-I-i_Tc,7571
|
|
22
|
-
dpdispatcher/machines/dp_cloud_server.py,sha256=SR69gsFb2BvOQCW1QnWfP3cQvu_qHLJNsycp5wzosJU,11706
|
|
23
|
-
dpdispatcher/machines/fugaku.py,sha256=9OP3qSaaruqypHAdcuBFQM_MUtFp3yrvhZ5bPyLwEEk,4308
|
|
24
|
-
dpdispatcher/machines/lsf.py,sha256=Qruot39cPEpBNbbPmDwb1Gyfgyw3N36O0hs9PNEXyVU,7997
|
|
25
|
-
dpdispatcher/machines/openapi.py,sha256=Gzzbo8YOAybXGTrgMutexErcaEi3ts7uTUNvOhThFS8,8858
|
|
26
|
-
dpdispatcher/machines/pbs.py,sha256=HGBUf96AJ7hWOQPrENP5tFIDnEm4cb9deqJJ8wExbms,7079
|
|
27
|
-
dpdispatcher/machines/shell.py,sha256=qaia7mC_fz5Bqyelxmc1je-xg7NQ_6vQQ0qAjg2m4RQ,4796
|
|
28
|
-
dpdispatcher/machines/slurm.py,sha256=SP5rQiCPWzq4rqgUgp0IGJXXD_1DURWl4OBRAJ-Kng4,15611
|
|
29
|
-
dpdispatcher/utils/__init__.py,sha256=fwvwkMf7DFNQkNBiIce8Y8gRA6FhICwKjkKiXu_BEJg,13
|
|
30
|
-
dpdispatcher/utils/hdfs_cli.py,sha256=Fy36JTrfdhuxGbaHe1hYY0KrlNp06Tbjwo5wpj4ph-8,5434
|
|
31
|
-
dpdispatcher/utils/job_status.py,sha256=Eszs4TPLfszCuf6zLaFonf25feXDUguF28spYOjJpQE,233
|
|
32
|
-
dpdispatcher/utils/record.py,sha256=c8jdPmCuLzRmFo_jOjR0j9zFR1EWX3NSHVuPEIYCycg,2147
|
|
33
|
-
dpdispatcher/utils/utils.py,sha256=1One9eW-v3ejDcL6PB9PSCMZQkalnbxq0DfJoUwQaLs,5334
|
|
34
|
-
dpdispatcher/utils/dpcloudserver/__init__.py,sha256=FnX9HH-2dXADluNfucg98JPMfruMoBpN9ER9lZkVQvQ,49
|
|
35
|
-
dpdispatcher/utils/dpcloudserver/client.py,sha256=CLfXswvzI4inDrW2bYkfMQ6gQJFcZOgLhiXBz_EI17M,12029
|
|
36
|
-
dpdispatcher/utils/dpcloudserver/config.py,sha256=NteQzf1OeEkz2UbkXHHQ0B72cUu23zLVzpM9Yh4v1Cc,559
|
|
37
|
-
dpdispatcher/utils/dpcloudserver/retcode.py,sha256=1qAF8gFZx55u2sO8KbtYSIIrjcO-IGufEUlwbkSfC1g,721
|
|
38
|
-
dpdispatcher/utils/dpcloudserver/zip_file.py,sha256=f9WrlktwHW0YipaWg5Y0kxjMZlhD1cJYa6EUpvu4Cro,2611
|
|
39
|
-
dpdispatcher-0.6.1.dist-info/LICENSE,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
|
|
40
|
-
dpdispatcher-0.6.1.dist-info/METADATA,sha256=TKf52k3Vt9neBJNWXCimoMSmEkvC5ubCjVqUCPOa8_8,12752
|
|
41
|
-
dpdispatcher-0.6.1.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
|
42
|
-
dpdispatcher-0.6.1.dist-info/entry_points.txt,sha256=NRHUV0IU_u7_XtcmmEDnVzAcUmurhiEAGwENckrajo4,233
|
|
43
|
-
dpdispatcher-0.6.1.dist-info/top_level.txt,sha256=35jAQoXY-b-e9fJ1_mxhZUiaCoJNt1ZI7mpFRf07Qjs,13
|
|
44
|
-
dpdispatcher-0.6.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|