parsl 2024.8.26__py3-none-any.whl → 2024.9.2__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.
- parsl/configs/improv.py +34 -0
- parsl/version.py +1 -1
- {parsl-2024.8.26.dist-info → parsl-2024.9.2.dist-info}/METADATA +2 -2
- {parsl-2024.8.26.dist-info → parsl-2024.9.2.dist-info}/RECORD +12 -11
- {parsl-2024.8.26.data → parsl-2024.9.2.data}/scripts/exec_parsl_function.py +0 -0
- {parsl-2024.8.26.data → parsl-2024.9.2.data}/scripts/interchange.py +0 -0
- {parsl-2024.8.26.data → parsl-2024.9.2.data}/scripts/parsl_coprocess.py +0 -0
- {parsl-2024.8.26.data → parsl-2024.9.2.data}/scripts/process_worker_pool.py +0 -0
- {parsl-2024.8.26.dist-info → parsl-2024.9.2.dist-info}/LICENSE +0 -0
- {parsl-2024.8.26.dist-info → parsl-2024.9.2.dist-info}/WHEEL +0 -0
- {parsl-2024.8.26.dist-info → parsl-2024.9.2.dist-info}/entry_points.txt +0 -0
- {parsl-2024.8.26.dist-info → parsl-2024.9.2.dist-info}/top_level.txt +0 -0
parsl/configs/improv.py
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
from parsl.config import Config
|
2
|
+
from parsl.executors import HighThroughputExecutor
|
3
|
+
from parsl.launchers import MpiRunLauncher
|
4
|
+
from parsl.providers import PBSProProvider
|
5
|
+
|
6
|
+
config = Config(
|
7
|
+
executors=[
|
8
|
+
HighThroughputExecutor(
|
9
|
+
label="Improv_multinode",
|
10
|
+
max_workers_per_node=32,
|
11
|
+
provider=PBSProProvider(
|
12
|
+
account="YOUR_ALLOCATION_ON_IMPROV",
|
13
|
+
# PBS directives (header lines), for example:
|
14
|
+
# scheduler_options='#PBS -l mem=4gb',
|
15
|
+
scheduler_options='',
|
16
|
+
|
17
|
+
queue="compute",
|
18
|
+
|
19
|
+
# Command to be run before starting a worker:
|
20
|
+
# **WARNING** Improv requires an openmpi module to be
|
21
|
+
# loaded for the MpiRunLauncher. Add additional env
|
22
|
+
# load commands to this multiline string.
|
23
|
+
worker_init='''
|
24
|
+
module load gcc/13.2.0;
|
25
|
+
module load openmpi/5.0.3-gcc-13.2.0; ''',
|
26
|
+
launcher=MpiRunLauncher(),
|
27
|
+
|
28
|
+
# number of compute nodes allocated for each block
|
29
|
+
nodes_per_block=2,
|
30
|
+
walltime='00:10:00'
|
31
|
+
),
|
32
|
+
),
|
33
|
+
],
|
34
|
+
)
|
parsl/version.py
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: parsl
|
3
|
-
Version: 2024.
|
3
|
+
Version: 2024.9.2
|
4
4
|
Summary: Simple data dependent workflows in Python
|
5
5
|
Home-page: https://github.com/Parsl/parsl
|
6
|
-
Download-URL: https://github.com/Parsl/parsl/archive/2024.
|
6
|
+
Download-URL: https://github.com/Parsl/parsl/archive/2024.09.02.tar.gz
|
7
7
|
Author: The Parsl Team
|
8
8
|
Author-email: parsl@googlegroups.com
|
9
9
|
License: Apache 2.0
|
@@ -8,7 +8,7 @@ parsl/multiprocessing.py,sha256=MyaEcEq-Qf860u7V98u-PZrPNdtzOZL_NW6EhIJnmfQ,1937
|
|
8
8
|
parsl/process_loggers.py,sha256=uQ7Gd0W72Jz7rrcYlOMfLsAEhkRltxXJL2MgdduJjEw,1136
|
9
9
|
parsl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
10
|
parsl/utils.py,sha256=91FjQiTUY383ueAjkBAgE21My9nba6SP2a2SrbB1r1Q,11250
|
11
|
-
parsl/version.py,sha256
|
11
|
+
parsl/version.py,sha256=-CxPczDJTqi5fdaWV26l0UO4NHlIPdBwBCFIx6tfkMQ,131
|
12
12
|
parsl/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
13
|
parsl/app/app.py,sha256=0gbM4AH2OtFOLsv07I5nglpElcwMSOi-FzdZZfrk7So,8532
|
14
14
|
parsl/app/bash.py,sha256=jm2AvePlCT9DZR7H_4ANDWxatp5dN_22FUlT_gWhZ-g,5528
|
@@ -39,6 +39,7 @@ parsl/configs/expanse.py,sha256=ADUY3GZWSfVKmqFWbgdfC85kRxNPChqOGwly0XdcKSw,1033
|
|
39
39
|
parsl/configs/frontera.py,sha256=6n0TMvF2IFdJ3g5NdFcM-rg5Na_6dDroF0ZIozk3-LU,1495
|
40
40
|
parsl/configs/htex_local.py,sha256=v6VG9UoWoosy3ls66lToTyGahZFjoLb5ni0nVWKfKNY,542
|
41
41
|
parsl/configs/illinoiscluster.py,sha256=ZR22A8uwFb8tzSzmU1D0kR0qcr5Thr0j-7Nb5hiCgQ8,1170
|
42
|
+
parsl/configs/improv.py,sha256=le9fDip-Mr-HqKObiyHXbdR-Ne7cy15Ao5ONoUzCSaE,1252
|
42
43
|
parsl/configs/kubernetes.py,sha256=s6ABVRwHEKsIFi-w9gc5OK-P0UDmlAZsoHc6OZ3oOD4,1325
|
43
44
|
parsl/configs/local_threads.py,sha256=I1VFfGo2TMTrBL9g_rlG3TEqEWkhL-AHpkqJ3lvcTf8,221
|
44
45
|
parsl/configs/midway.py,sha256=An2Z-TbL3b6AP3uQwauxtUqZaYO2CtUiP8XH05hpWks,1221
|
@@ -460,13 +461,13 @@ parsl/usage_tracking/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
460
461
|
parsl/usage_tracking/api.py,sha256=iaCY58Dc5J4UM7_dJzEEs871P1p1HdxBMtNGyVdzc9g,1821
|
461
462
|
parsl/usage_tracking/levels.py,sha256=xbfzYEsd55KiZJ-mzNgPebvOH4rRHum04hROzEf41tU,291
|
462
463
|
parsl/usage_tracking/usage.py,sha256=qNEJ7nPimqd3Y7OWFLdYmNwJ6XDKlyfV_fTzasxsQw8,8690
|
463
|
-
parsl-2024.
|
464
|
-
parsl-2024.
|
465
|
-
parsl-2024.
|
466
|
-
parsl-2024.
|
467
|
-
parsl-2024.
|
468
|
-
parsl-2024.
|
469
|
-
parsl-2024.
|
470
|
-
parsl-2024.
|
471
|
-
parsl-2024.
|
472
|
-
parsl-2024.
|
464
|
+
parsl-2024.9.2.data/scripts/exec_parsl_function.py,sha256=RUkJ4JSJAjr7YyRZ58zhMdg8cR5dVV9odUl3AuzNf3k,7802
|
465
|
+
parsl-2024.9.2.data/scripts/interchange.py,sha256=2tsbwd055SEnSpWLNNoqMW6o6ohRJFNSgvgN_umsqN8,30864
|
466
|
+
parsl-2024.9.2.data/scripts/parsl_coprocess.py,sha256=zrVjEqQvFOHxsLufPi00xzMONagjVwLZbavPM7bbjK4,5722
|
467
|
+
parsl-2024.9.2.data/scripts/process_worker_pool.py,sha256=78QKnV5KbY_vcteC6k60gpDE4wEk6hsciet_qzs9QoU,43061
|
468
|
+
parsl-2024.9.2.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
469
|
+
parsl-2024.9.2.dist-info/METADATA,sha256=RHRyaL2xjgp_GVytcH5CI5Q9uKAfxJ54ZJzfKC-rFNY,4120
|
470
|
+
parsl-2024.9.2.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
471
|
+
parsl-2024.9.2.dist-info/entry_points.txt,sha256=XqnsWDYoEcLbsMcpnYGKLEnSBmaIe1YoM5YsBdJG2tI,176
|
472
|
+
parsl-2024.9.2.dist-info/top_level.txt,sha256=PIheYoUFQtF2icLsgOykgU-Cjuwr2Oi6On2jo5RYgRM,6
|
473
|
+
parsl-2024.9.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|