parsl 2024.1.29__py3-none-any.whl → 2024.2.5__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/curvezmq.py +205 -0
- parsl/dataflow/dflow.py +1 -1
- parsl/executors/high_throughput/executor.py +78 -49
- parsl/executors/high_throughput/interchange.py +14 -7
- parsl/executors/high_throughput/process_worker_pool.py +15 -7
- parsl/executors/high_throughput/zmq_pipes.py +21 -15
- parsl/executors/taskvine/manager.py +44 -43
- parsl/monitoring/monitoring.py +18 -3
- parsl/providers/errors.py +4 -6
- parsl/providers/slurm/slurm.py +7 -6
- parsl/tests/configs/ad_hoc_cluster_htex.py +1 -0
- parsl/tests/configs/azure_single_node.py +1 -0
- parsl/tests/configs/bluewaters.py +1 -0
- parsl/tests/configs/bridges.py +1 -0
- parsl/tests/configs/cc_in2p3.py +1 -0
- parsl/tests/configs/comet.py +1 -0
- parsl/tests/configs/cooley_htex.py +1 -0
- parsl/tests/configs/ec2_single_node.py +1 -0
- parsl/tests/configs/ec2_spot.py +1 -0
- parsl/tests/configs/frontera.py +1 -0
- parsl/tests/configs/htex_ad_hoc_cluster.py +1 -0
- parsl/tests/configs/htex_local.py +1 -0
- parsl/tests/configs/htex_local_alternate.py +1 -0
- parsl/tests/configs/htex_local_intask_staging.py +1 -0
- parsl/tests/configs/htex_local_rsync_staging.py +1 -0
- parsl/tests/configs/local_adhoc.py +1 -0
- parsl/tests/configs/midway.py +1 -0
- parsl/tests/configs/nscc_singapore.py +1 -0
- parsl/tests/configs/osg_htex.py +1 -0
- parsl/tests/configs/petrelkube.py +1 -0
- parsl/tests/configs/summit.py +1 -0
- parsl/tests/configs/swan_htex.py +1 -0
- parsl/tests/configs/theta.py +1 -0
- parsl/tests/manual_tests/htex_local.py +1 -0
- parsl/tests/manual_tests/test_ad_hoc_htex.py +1 -0
- parsl/tests/manual_tests/test_fan_in_out_htex_remote.py +1 -0
- parsl/tests/manual_tests/test_memory_limits.py +1 -0
- parsl/tests/scaling_tests/htex_local.py +1 -0
- parsl/tests/sites/test_affinity.py +1 -0
- parsl/tests/sites/test_concurrent.py +2 -1
- parsl/tests/sites/test_dynamic_executor.py +1 -0
- parsl/tests/sites/test_worker_info.py +1 -0
- parsl/tests/test_bash_apps/test_stdout.py +6 -1
- parsl/tests/test_curvezmq.py +455 -0
- parsl/tests/test_data/test_file_apps.py +5 -5
- parsl/tests/test_data/test_file_staging.py +3 -3
- parsl/tests/test_docs/test_kwargs.py +3 -3
- parsl/tests/test_htex/test_htex.py +46 -0
- parsl/tests/test_htex/test_htex_zmq_binding.py +53 -13
- parsl/tests/test_python_apps/test_futures.py +5 -5
- parsl/tests/test_regression/test_97_parallelism_0.py +1 -0
- parsl/tests/test_scaling/test_block_error_handler.py +6 -5
- parsl/tests/test_scaling/test_regression_1621.py +1 -0
- parsl/tests/test_scaling/test_scale_down.py +1 -0
- parsl/version.py +1 -1
- {parsl-2024.1.29.data → parsl-2024.2.5.data}/scripts/process_worker_pool.py +15 -7
- {parsl-2024.1.29.dist-info → parsl-2024.2.5.dist-info}/METADATA +3 -3
- {parsl-2024.1.29.dist-info → parsl-2024.2.5.dist-info}/RECORD +64 -61
- {parsl-2024.1.29.data → parsl-2024.2.5.data}/scripts/exec_parsl_function.py +0 -0
- {parsl-2024.1.29.data → parsl-2024.2.5.data}/scripts/parsl_coprocess.py +0 -0
- {parsl-2024.1.29.dist-info → parsl-2024.2.5.dist-info}/LICENSE +0 -0
- {parsl-2024.1.29.dist-info → parsl-2024.2.5.dist-info}/WHEEL +0 -0
- {parsl-2024.1.29.dist-info → parsl-2024.2.5.dist-info}/entry_points.txt +0 -0
- {parsl-2024.1.29.dist-info → parsl-2024.2.5.dist-info}/top_level.txt +0 -0
@@ -42,10 +42,10 @@ def test_fut_case_1():
|
|
42
42
|
|
43
43
|
|
44
44
|
@pytest.mark.staging_required
|
45
|
-
def test_fut_case_2(
|
45
|
+
def test_fut_case_2(tmpd_cwd):
|
46
46
|
"""Testing the behavior of DataFutures where there are no dependencies
|
47
47
|
"""
|
48
|
-
output_f =
|
48
|
+
output_f = tmpd_cwd / 'test_fut_case_2.txt'
|
49
49
|
app_fu = delay_incr(1, delay=0.01, outputs=[File(str(output_f))])
|
50
50
|
data_fu = app_fu.outputs[0]
|
51
51
|
|
@@ -69,13 +69,13 @@ def test_fut_case_3():
|
|
69
69
|
|
70
70
|
|
71
71
|
@pytest.mark.staging_required
|
72
|
-
def test_fut_case_4(
|
72
|
+
def test_fut_case_4(tmpd_cwd):
|
73
73
|
"""Testing the behavior of DataFutures where there are dependencies
|
74
74
|
|
75
75
|
The first call has a delay, and the second call depends on the first
|
76
76
|
"""
|
77
|
-
output_f1 =
|
78
|
-
output_f2 =
|
77
|
+
output_f1 = tmpd_cwd / 'test_fut_case_4_f1.txt'
|
78
|
+
output_f2 = tmpd_cwd / 'test_fut_case_4_f2.txt'
|
79
79
|
app_1 = delay_incr(1, delay=0.01, outputs=[File(str(output_f1))])
|
80
80
|
app_2 = delay_incr(app_1, delay=0.01, outputs=[File(str(output_f2))])
|
81
81
|
data_2 = app_2.outputs[0]
|
@@ -11,7 +11,7 @@ from functools import partial
|
|
11
11
|
@pytest.mark.local
|
12
12
|
def test_block_error_handler_false():
|
13
13
|
mock = Mock()
|
14
|
-
htex = HighThroughputExecutor(block_error_handler=False)
|
14
|
+
htex = HighThroughputExecutor(block_error_handler=False, encrypted=True)
|
15
15
|
assert htex.block_error_handler is noop_error_handler
|
16
16
|
htex.set_bad_state_and_fail_all = mock
|
17
17
|
|
@@ -27,7 +27,7 @@ def test_block_error_handler_false():
|
|
27
27
|
@pytest.mark.local
|
28
28
|
def test_block_error_handler_mock():
|
29
29
|
handler_mock = Mock()
|
30
|
-
htex = HighThroughputExecutor(block_error_handler=handler_mock)
|
30
|
+
htex = HighThroughputExecutor(block_error_handler=handler_mock, encrypted=True)
|
31
31
|
assert htex.block_error_handler is handler_mock
|
32
32
|
|
33
33
|
bad_jobs = {'1': JobStatus(JobState.FAILED),
|
@@ -43,6 +43,7 @@ def test_block_error_handler_mock():
|
|
43
43
|
@pytest.mark.local
|
44
44
|
def test_simple_error_handler():
|
45
45
|
htex = HighThroughputExecutor(block_error_handler=simple_error_handler,
|
46
|
+
encrypted=True,
|
46
47
|
provider=LocalProvider(init_blocks=3))
|
47
48
|
|
48
49
|
assert htex.block_error_handler is simple_error_handler
|
@@ -76,7 +77,7 @@ def test_simple_error_handler():
|
|
76
77
|
|
77
78
|
@pytest.mark.local
|
78
79
|
def test_windowed_error_handler():
|
79
|
-
htex = HighThroughputExecutor(block_error_handler=windowed_error_handler)
|
80
|
+
htex = HighThroughputExecutor(block_error_handler=windowed_error_handler, encrypted=True)
|
80
81
|
assert htex.block_error_handler is windowed_error_handler
|
81
82
|
|
82
83
|
bad_state_mock = Mock()
|
@@ -110,7 +111,7 @@ def test_windowed_error_handler():
|
|
110
111
|
|
111
112
|
@pytest.mark.local
|
112
113
|
def test_windowed_error_handler_sorting():
|
113
|
-
htex = HighThroughputExecutor(block_error_handler=windowed_error_handler)
|
114
|
+
htex = HighThroughputExecutor(block_error_handler=windowed_error_handler, encrypted=True)
|
114
115
|
assert htex.block_error_handler is windowed_error_handler
|
115
116
|
|
116
117
|
bad_state_mock = Mock()
|
@@ -136,7 +137,7 @@ def test_windowed_error_handler_sorting():
|
|
136
137
|
@pytest.mark.local
|
137
138
|
def test_windowed_error_handler_with_threshold():
|
138
139
|
error_handler = partial(windowed_error_handler, threshold=2)
|
139
|
-
htex = HighThroughputExecutor(block_error_handler=error_handler)
|
140
|
+
htex = HighThroughputExecutor(block_error_handler=error_handler, encrypted=True)
|
140
141
|
assert htex.block_error_handler is error_handler
|
141
142
|
|
142
143
|
bad_state_mock = Mock()
|
parsl/version.py
CHANGED
@@ -20,8 +20,8 @@ import multiprocessing
|
|
20
20
|
from multiprocessing.managers import DictProxy
|
21
21
|
from multiprocessing.sharedctypes import Synchronized
|
22
22
|
|
23
|
+
from parsl import curvezmq
|
23
24
|
from parsl.process_loggers import wrap_with_logs
|
24
|
-
|
25
25
|
from parsl.version import VERSION as PARSL_VERSION
|
26
26
|
from parsl.app.errors import RemoteExceptionWrapper
|
27
27
|
from parsl.executors.high_throughput.errors import WorkerLost
|
@@ -63,7 +63,8 @@ class Manager:
|
|
63
63
|
heartbeat_period,
|
64
64
|
poll_period,
|
65
65
|
cpu_affinity,
|
66
|
-
available_accelerators: Sequence[str]
|
66
|
+
available_accelerators: Sequence[str],
|
67
|
+
cert_dir: Optional[str]):
|
67
68
|
"""
|
68
69
|
Parameters
|
69
70
|
----------
|
@@ -118,6 +119,8 @@ class Manager:
|
|
118
119
|
available_accelerators: list of str
|
119
120
|
List of accelerators available to the workers.
|
120
121
|
|
122
|
+
cert_dir : str | None
|
123
|
+
Path to the certificate directory.
|
121
124
|
"""
|
122
125
|
|
123
126
|
logger.info("Manager started")
|
@@ -137,15 +140,16 @@ class Manager:
|
|
137
140
|
print("Failed to find a viable address to connect to interchange. Exiting")
|
138
141
|
exit(5)
|
139
142
|
|
140
|
-
self.
|
141
|
-
self.
|
143
|
+
self.cert_dir = cert_dir
|
144
|
+
self.zmq_context = curvezmq.ClientContext(self.cert_dir)
|
145
|
+
self.task_incoming = self.zmq_context.socket(zmq.DEALER)
|
142
146
|
self.task_incoming.setsockopt(zmq.IDENTITY, uid.encode('utf-8'))
|
143
147
|
# Linger is set to 0, so that the manager can exit even when there might be
|
144
148
|
# messages in the pipe
|
145
149
|
self.task_incoming.setsockopt(zmq.LINGER, 0)
|
146
150
|
self.task_incoming.connect(task_q_url)
|
147
151
|
|
148
|
-
self.result_outgoing = self.
|
152
|
+
self.result_outgoing = self.zmq_context.socket(zmq.DEALER)
|
149
153
|
self.result_outgoing.setsockopt(zmq.IDENTITY, uid.encode('utf-8'))
|
150
154
|
self.result_outgoing.setsockopt(zmq.LINGER, 0)
|
151
155
|
self.result_outgoing.connect(result_q_url)
|
@@ -468,7 +472,7 @@ class Manager:
|
|
468
472
|
|
469
473
|
self.task_incoming.close()
|
470
474
|
self.result_outgoing.close()
|
471
|
-
self.
|
475
|
+
self.zmq_context.term()
|
472
476
|
delta = time.time() - start
|
473
477
|
logger.info("process_worker_pool ran for {} seconds".format(delta))
|
474
478
|
return
|
@@ -720,6 +724,8 @@ if __name__ == "__main__":
|
|
720
724
|
help="Enable logging at DEBUG level")
|
721
725
|
parser.add_argument("-a", "--addresses", default='',
|
722
726
|
help="Comma separated list of addresses at which the interchange could be reached")
|
727
|
+
parser.add_argument("--cert_dir", required=True,
|
728
|
+
help="Path to certificate directory.")
|
723
729
|
parser.add_argument("-l", "--logdir", default="process_worker_pool_logs",
|
724
730
|
help="Process worker pool log directory")
|
725
731
|
parser.add_argument("-u", "--uid", default=str(uuid.uuid4()).split('-')[-1],
|
@@ -773,6 +779,7 @@ if __name__ == "__main__":
|
|
773
779
|
|
774
780
|
logger.info("Python version: {}".format(sys.version))
|
775
781
|
logger.info("Debug logging: {}".format(args.debug))
|
782
|
+
logger.info("Certificates dir: {}".format(args.cert_dir))
|
776
783
|
logger.info("Log dir: {}".format(args.logdir))
|
777
784
|
logger.info("Manager ID: {}".format(args.uid))
|
778
785
|
logger.info("Block ID: {}".format(args.block_id))
|
@@ -804,7 +811,8 @@ if __name__ == "__main__":
|
|
804
811
|
heartbeat_period=int(args.hb_period),
|
805
812
|
poll_period=int(args.poll),
|
806
813
|
cpu_affinity=args.cpu_affinity,
|
807
|
-
available_accelerators=args.available_accelerators
|
814
|
+
available_accelerators=args.available_accelerators,
|
815
|
+
cert_dir=None if args.cert_dir == "None" else args.cert_dir)
|
808
816
|
manager.start()
|
809
817
|
|
810
818
|
except Exception:
|
@@ -1,9 +1,9 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: parsl
|
3
|
-
Version: 2024.
|
3
|
+
Version: 2024.2.5
|
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.02.05.tar.gz
|
7
7
|
Author: The Parsl Team
|
8
8
|
Author-email: parsl@googlegroups.com
|
9
9
|
License: Apache 2.0
|
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
19
19
|
Requires-Python: >=3.8.0
|
20
20
|
License-File: LICENSE
|
21
21
|
Requires-Dist: pyzmq >=17.1.2
|
22
|
-
Requires-Dist: typeguard
|
22
|
+
Requires-Dist: typeguard !=3.*,<5,>=2.10
|
23
23
|
Requires-Dist: typing-extensions <5,>=4.6
|
24
24
|
Requires-Dist: globus-sdk
|
25
25
|
Requires-Dist: dill
|
@@ -1,13 +1,14 @@
|
|
1
1
|
parsl/__init__.py,sha256=hq8rJmP59wzd9-yxaGcmq5gPpshOopH-Y1K0BkUBNY0,1843
|
2
2
|
parsl/addresses.py,sha256=bkaRhM4IZ4iZzh6ZkRXPvCLKFkbJ6HX2AOjYyujCiO8,4814
|
3
3
|
parsl/config.py,sha256=ysUWBfm9bygayHHdItaJbP4oozkHJJmVQVnWCt5igjE,6808
|
4
|
+
parsl/curvezmq.py,sha256=FtZEYP1IWDry39cH-tOKUm9TnaR1U7krOmvVYpATcOk,6939
|
4
5
|
parsl/errors.py,sha256=SzINzQFZDBDbj9l-DPQznD0TbGkNhHIRAPkcBCogf_A,1019
|
5
6
|
parsl/log_utils.py,sha256=AGem-dhQs5TYUyJg6GKkRuHxAw8FHhYlWB_0s7_ROw4,3175
|
6
7
|
parsl/multiprocessing.py,sha256=w3t1pFkHo4oZpznc2KF6Ff-Jj8MvXqvjm-hoiRqZDDQ,1984
|
7
8
|
parsl/process_loggers.py,sha256=1G3Rfrh5wuZNo2X03grG4kTYPGOxz7hHCyG6L_A3b0A,1137
|
8
9
|
parsl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
10
|
parsl/utils.py,sha256=TTM6gFgW2EscFsNNDGNRmHdXSMIo7TO5yYt8PdyRqVI,11767
|
10
|
-
parsl/version.py,sha256=
|
11
|
+
parsl/version.py,sha256=518B_rDjM-homjs_xXjMDHV2WctrHFNAXmTOWqBSCu4,131
|
11
12
|
parsl/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
13
|
parsl/app/app.py,sha256=wAHchJetgnicT1pn0NJKDeDX0lV3vDFlG8cQd_Ciax4,8522
|
13
14
|
parsl/app/bash.py,sha256=bx9x1XFwkOTpZZD3CPwnVL9SyNRDjbUGtOnuGLvxN_8,5396
|
@@ -62,7 +63,7 @@ parsl/data_provider/http.py,sha256=nDHTW7XmJqAukWJjPRQjyhUXt8r6GsQ36mX9mv_wOig,2
|
|
62
63
|
parsl/data_provider/rsync.py,sha256=2-ZxqrT-hBj39x082NusJaBqsGW4Jd2qCW6JkVPpEl0,4254
|
63
64
|
parsl/data_provider/staging.py,sha256=l-mAXFburs3BWPjkSmiQKuAgJpsxCG62yATPDbrafYI,4523
|
64
65
|
parsl/dataflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
65
|
-
parsl/dataflow/dflow.py,sha256=
|
66
|
+
parsl/dataflow/dflow.py,sha256=uUlalq9XCaj8JrqclU24C1A-s8CVkMABpNjCKqzKfDg,63876
|
66
67
|
parsl/dataflow/errors.py,sha256=w2vOt_ymzG2dOqJUO4IDcmTlrCIHlMZL8nBVyVq0O_8,2176
|
67
68
|
parsl/dataflow/futures.py,sha256=aVfEUTzp4-EdunDAtNcqVQf8l_A7ArDi2c82KZMwxfY,5256
|
68
69
|
parsl/dataflow/memoization.py,sha256=AsJO6c6cRp2ac6H8uGn2USlEi78_nX3QWvpxYt4XdYE,9583
|
@@ -80,13 +81,13 @@ parsl/executors/flux/executor.py,sha256=tf9xPmWgEsgEjzs89dJ-sMx-QaqRpM1R1crX3tp0
|
|
80
81
|
parsl/executors/flux/flux_instance_manager.py,sha256=tTEOATClm9SwdgLeBRWPC6D55iNDuh0YxqJOw3c3eQ4,2036
|
81
82
|
parsl/executors/high_throughput/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
82
83
|
parsl/executors/high_throughput/errors.py,sha256=vl69wLuVOplbKxHI9WphEGBExHWkTn5n8T9QhBXuNH0,380
|
83
|
-
parsl/executors/high_throughput/executor.py,sha256=
|
84
|
-
parsl/executors/high_throughput/interchange.py,sha256=
|
84
|
+
parsl/executors/high_throughput/executor.py,sha256=3YVQ6dNNutG2Z23xGpHX8BL1hx0JxUAnMV4k4QSJSvw,32801
|
85
|
+
parsl/executors/high_throughput/interchange.py,sha256=5gyhl0ZRttA1Fqa-yzTUx6iafBJNngru1mnRNpNhsQs,29684
|
85
86
|
parsl/executors/high_throughput/manager_record.py,sha256=T8-JVMfDJU6SJfzJRooD0mO8AHGMXlcn3PBOM0m_vng,366
|
86
87
|
parsl/executors/high_throughput/monitoring_info.py,sha256=3gQpwQjjNDEBz0cQqJZB6hRiwLiWwXs83zkQDmbOwxY,297
|
87
88
|
parsl/executors/high_throughput/probe.py,sha256=lvnuf-vBv57tHvFh-J51F9sDYBES7jCgs6KYgWvmKRs,2749
|
88
|
-
parsl/executors/high_throughput/process_worker_pool.py,sha256=
|
89
|
-
parsl/executors/high_throughput/zmq_pipes.py,sha256=
|
89
|
+
parsl/executors/high_throughput/process_worker_pool.py,sha256=v1nehgcRN2Nbreu5R2aUmsdxJhTaXwp5g-YTC3pN8Rk,35770
|
90
|
+
parsl/executors/high_throughput/zmq_pipes.py,sha256=TEIr1PcBDVbchBukzPaEsku2lbIIFCYYjeUq5zw_VBA,6514
|
90
91
|
parsl/executors/radical/__init__.py,sha256=CKbtV2numw5QvgIBq1htMUrt9TqDCIC2zifyf2svTNU,186
|
91
92
|
parsl/executors/radical/executor.py,sha256=u0GhRk4dzAX8lmTGjBYmztg1yT02AsEmsSnUg84MnwU,20823
|
92
93
|
parsl/executors/radical/rpex_master.py,sha256=nMGxYWw3r-8_vZVnEwfB5eCfdTqXkeQDP5yvU0jXgc8,1368
|
@@ -98,7 +99,7 @@ parsl/executors/taskvine/exec_parsl_function.py,sha256=oUAKbPWwpbzWwQ47bZQlVDxS8
|
|
98
99
|
parsl/executors/taskvine/executor.py,sha256=07BJsXPKRwT6hYbQRf84C1k6m3woqq4SM8ZIa9KTUiA,31404
|
99
100
|
parsl/executors/taskvine/factory.py,sha256=sHhfGv7xRFrWkQclzRXuFEAHuSXhsZu2lR5LJ81aucA,2638
|
100
101
|
parsl/executors/taskvine/factory_config.py,sha256=AbE2fN2snrF5ITYrrS4DnGn2XkJHUFr_17DYHDHIwq0,3693
|
101
|
-
parsl/executors/taskvine/manager.py,sha256=
|
102
|
+
parsl/executors/taskvine/manager.py,sha256=X4Fir46doc4qMdTSKNfyS78HvhnUqq7Rw7jCvbD0Tfw,25732
|
102
103
|
parsl/executors/taskvine/manager_config.py,sha256=Kg1CknT88jTW0jEpFv5oKq1CeGeIJo5P1muayROcwzQ,7431
|
103
104
|
parsl/executors/taskvine/utils.py,sha256=iSrIogeiauL3UNy_9tiZp1cBSNn6fIJkMYQRVi1n_r8,4156
|
104
105
|
parsl/executors/workqueue/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -120,7 +121,7 @@ parsl/launchers/launchers.py,sha256=t9nuX38GMlAUPHs0aksnMd_5jI59IcqwlUD667w1cu4,
|
|
120
121
|
parsl/monitoring/__init__.py,sha256=0ywNz6i0lM1xo_7_BIxhETDGeVd2C_0wwD7qgeaMR4c,83
|
121
122
|
parsl/monitoring/db_manager.py,sha256=Uz_yxEDufpBjkgyzWQbpdMk-RUYaV801QgJVNMx8ft8,36247
|
122
123
|
parsl/monitoring/message_type.py,sha256=Khn88afNxcOIciKiCK4GLnn90I5BlRTiOL3zK-P07yQ,401
|
123
|
-
parsl/monitoring/monitoring.py,sha256=
|
124
|
+
parsl/monitoring/monitoring.py,sha256=cqApvzkRtuWwYxuZK0p5S7ef4T2FuKRQRaNV2ytHUbM,24682
|
124
125
|
parsl/monitoring/radios.py,sha256=T2_6QuUjC-dd_7qMnIk6WHQead1iWz7m_P6ZC4QAqdA,5265
|
125
126
|
parsl/monitoring/remote.py,sha256=88KYckdqCcGYWNxpkBETdNg4YVP8UkMLNcJDT4ffq_s,12552
|
126
127
|
parsl/monitoring/types.py,sha256=SO6Fjjbb83sv_MtbutoxGssiWh6oXKkEEsD4EvwOnZ4,629
|
@@ -150,7 +151,7 @@ parsl/monitoring/visualization/templates/workflows_summary.html,sha256=7brKKNsxc
|
|
150
151
|
parsl/providers/__init__.py,sha256=jd-1_vd-HtWYDHzwO30lNW5GMw6nfeTyNn3tI8CG7L4,1207
|
151
152
|
parsl/providers/base.py,sha256=LvSMClsbCQI_7geGdNDpKZ6vWCl1EpD73o0xkxilqJ4,5702
|
152
153
|
parsl/providers/cluster_provider.py,sha256=FLl3AUHdFRRapQl_YoM1gxg_UhH3gxxaDvl6NNQqSTg,4701
|
153
|
-
parsl/providers/errors.py,sha256=
|
154
|
+
parsl/providers/errors.py,sha256=7ig0DEqyFIwjVx1QVXfeutz1Ek16IEAS4doaqg-BTfQ,2270
|
154
155
|
parsl/providers/ad_hoc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
155
156
|
parsl/providers/ad_hoc/ad_hoc.py,sha256=jeYMxMT_ox7banr8Db_UeT2qer6XTGLZOZvC307S54U,8302
|
156
157
|
parsl/providers/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -182,7 +183,7 @@ parsl/providers/pbspro/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
182
183
|
parsl/providers/pbspro/pbspro.py,sha256=zXsb45LhgCkLEwwKXjdjsm2jv884j1fXHJ2hky9auD0,7789
|
183
184
|
parsl/providers/pbspro/template.py,sha256=ozMbrx0HNsLnSoWbkZhy-55yJoTX5gpdRrDuVn6TFWA,369
|
184
185
|
parsl/providers/slurm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
185
|
-
parsl/providers/slurm/slurm.py,sha256=
|
186
|
+
parsl/providers/slurm/slurm.py,sha256=Ls4TtCXVbJb7bhQYdlJ9Cxz8GLyq5XyTZREFq4cvpp4,12630
|
186
187
|
parsl/providers/slurm/template.py,sha256=cc-3l5wnThEWfqzpniPgi3FP6934Ni05UZ9r0A1RA8s,369
|
187
188
|
parsl/providers/torque/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
188
189
|
parsl/providers/torque/template.py,sha256=4qfc2gmlEhRCAD7erFDOs4prJQ43I8s4E8DSUSVQx3A,358
|
@@ -198,27 +199,28 @@ parsl/tests/callables_helper.py,sha256=ceP1YYsNtrZgKT6MAIvpgdccEjQ_CpFEOnZBGHKGO
|
|
198
199
|
parsl/tests/conftest.py,sha256=JwnhDUB5f48PjhP9xbj1fxBRDJ9M_zfSIAC5UCr7ao4,14304
|
199
200
|
parsl/tests/test_aalst_patterns.py,sha256=fi6JHKidV7vMJLv2nnu_-Q0ngGLc89mRm8rFrGIwiUM,9615
|
200
201
|
parsl/tests/test_callables.py,sha256=_QsdS8v2nGgOj4_X69NFHZOGUnqbOrOMCA9pCJColZw,1974
|
202
|
+
parsl/tests/test_curvezmq.py,sha256=yyhlS4vmaZdMitiySoy4l_ih9H1bsPiN-tMdwIh3H20,12431
|
201
203
|
parsl/tests/test_flux.py,sha256=st9v55o5ZajK_LQUXh1saLwFh2gpaQFGG5mzdnJMNu0,5098
|
202
204
|
parsl/tests/test_summary.py,sha256=d2UCDX19n8YjLVFvwI7htvyjKQ3uGUNdyeiaxBaN4eY,569
|
203
205
|
parsl/tests/test_thread_parallelism.py,sha256=siG_4M2leEbk8RFH94PMH76yDQATU3BR6ptQMzSMy5A,1654
|
204
206
|
parsl/tests/utils.py,sha256=YqUlBTj2UoAFVKVdLKh-1Y6MQM_ZSHPJOQ4GfQvFXyk,110
|
205
207
|
parsl/tests/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
206
|
-
parsl/tests/configs/ad_hoc_cluster_htex.py,sha256=
|
207
|
-
parsl/tests/configs/azure_single_node.py,sha256=
|
208
|
-
parsl/tests/configs/bluewaters.py,sha256=
|
209
|
-
parsl/tests/configs/bridges.py,sha256=
|
210
|
-
parsl/tests/configs/cc_in2p3.py,sha256=
|
211
|
-
parsl/tests/configs/comet.py,sha256=
|
212
|
-
parsl/tests/configs/cooley_htex.py,sha256=
|
213
|
-
parsl/tests/configs/ec2_single_node.py,sha256=
|
214
|
-
parsl/tests/configs/ec2_spot.py,sha256=
|
215
|
-
parsl/tests/configs/frontera.py,sha256=
|
216
|
-
parsl/tests/configs/htex_ad_hoc_cluster.py,sha256=
|
217
|
-
parsl/tests/configs/htex_local.py,sha256=
|
218
|
-
parsl/tests/configs/htex_local_alternate.py,sha256=
|
219
|
-
parsl/tests/configs/htex_local_intask_staging.py,sha256=
|
220
|
-
parsl/tests/configs/htex_local_rsync_staging.py,sha256=
|
221
|
-
parsl/tests/configs/local_adhoc.py,sha256=
|
208
|
+
parsl/tests/configs/ad_hoc_cluster_htex.py,sha256=OKkcU-WS1ocDWFOOqBEeOlxR8KNLOA4wU8cQFYt51-U,1292
|
209
|
+
parsl/tests/configs/azure_single_node.py,sha256=nDDWz8XZLCGeFfogsvA4fqJXb3nzxpvlEfcloHN6grM,1730
|
210
|
+
parsl/tests/configs/bluewaters.py,sha256=8_XOqXhdClxsvBEmQxMlgeJIYMZjWsRN3G0Cni6fr_I,1361
|
211
|
+
parsl/tests/configs/bridges.py,sha256=jNsKJwHlX2XQsgAvzJ9YpQI85ekfvs3YdJyGoFLcYSI,1592
|
212
|
+
parsl/tests/configs/cc_in2p3.py,sha256=aOWNiCP3vAnIwuZ4J6yi4zkcswu_MzYQzI6UHtvdj_I,869
|
213
|
+
parsl/tests/configs/comet.py,sha256=8W-B2mo0ygx_i5sJUMAR6SYxrxSV_XKStnA9X40sveo,1156
|
214
|
+
parsl/tests/configs/cooley_htex.py,sha256=f7KtkzwUhNacJpIuTqNS0NKnOcEUWHzzhZM3iVTd-s0,1360
|
215
|
+
parsl/tests/configs/ec2_single_node.py,sha256=cwlcnuegR_k_rBKj7sdVxn24GY5fWkHs32yFKOidwOI,1424
|
216
|
+
parsl/tests/configs/ec2_spot.py,sha256=r_ipGI9Yjk8qz6HkfIQ7jvbMIDSUXgnY4Bv4SRRVRdk,1254
|
217
|
+
parsl/tests/configs/frontera.py,sha256=4GxYC54XfoyK53eHAAMT-Ia9IY_9qiBRWpjmn6r33Ik,1557
|
218
|
+
parsl/tests/configs/htex_ad_hoc_cluster.py,sha256=WNyV2TbZmZvL2cfXZcKNJ7v1igFAwfMCavwBeFImwDs,946
|
219
|
+
parsl/tests/configs/htex_local.py,sha256=8Fhn1fgUJd9TY0zmteZutvFuRWPiEZSeZX7RpFEz_0I,720
|
220
|
+
parsl/tests/configs/htex_local_alternate.py,sha256=_ZakbugRdKMYGn94U3xLFmmScZ0WkrdaSbQ8GyTsoLU,2444
|
221
|
+
parsl/tests/configs/htex_local_intask_staging.py,sha256=a-Ub_id1bzbqr-NjgV1JOOl1AVfXf0b1MNJb1HfSQWk,888
|
222
|
+
parsl/tests/configs/htex_local_rsync_staging.py,sha256=Hz8ZxTtMCXX-JFEOCCBxoJYcMl88hb4airvHZMK2Qzo,942
|
223
|
+
parsl/tests/configs/local_adhoc.py,sha256=5yjpQLjSQtNZsycxQmyEEgBVF5VPJ-HqgAJPyeYLzzo,475
|
222
224
|
parsl/tests/configs/local_radical.py,sha256=V6mb3poummdeV67_Bw919TJh0cTLvShBAoWic9997LY,453
|
223
225
|
parsl/tests/configs/local_radical_mpi.py,sha256=K6V2HbARujaow5DBAUYSIWt1RaYbt898FCVe7UJ5Ckw,570
|
224
226
|
parsl/tests/configs/local_threads.py,sha256=oEnQSlom_JMLFX9_Ln49JAfOP3nSMbw8gTaDJo_NYfo,202
|
@@ -231,14 +233,14 @@ parsl/tests/configs/local_threads_globus.py,sha256=NhY27cD4vcqLh762Ye0BINZnt63Em
|
|
231
233
|
parsl/tests/configs/local_threads_http_in_task.py,sha256=csDY-C50tXKO2ntbbPBvppCRlXBcB7UCQOHN_FyfFYc,447
|
232
234
|
parsl/tests/configs/local_threads_monitoring.py,sha256=w-cxYFxVDJmCXMj2XMZnuWkrVTNaZfAXNwpr_uuOwFY,404
|
233
235
|
parsl/tests/configs/local_threads_no_cache.py,sha256=2LM8rYhl62LIFUMjAs2_VI_R25YW5AI3RfVK_e5bdN8,236
|
234
|
-
parsl/tests/configs/midway.py,sha256=
|
235
|
-
parsl/tests/configs/nscc_singapore.py,sha256=
|
236
|
-
parsl/tests/configs/osg_htex.py,sha256=
|
237
|
-
parsl/tests/configs/petrelkube.py,sha256=
|
238
|
-
parsl/tests/configs/summit.py,sha256=
|
239
|
-
parsl/tests/configs/swan_htex.py,sha256
|
236
|
+
parsl/tests/configs/midway.py,sha256=4gO58PLKRxCQEQiSUJW8gyK4ocBmM_pGf4Tg_5Hzuag,1326
|
237
|
+
parsl/tests/configs/nscc_singapore.py,sha256=P3jZ0e1Pu3yUYTET0RlDGAIXlll1FhIo8XvRYpcJboE,1472
|
238
|
+
parsl/tests/configs/osg_htex.py,sha256=IcMUSWXJOAqZvqbzt5JIFjahVtJsMZl6OSgyelJLaWY,1362
|
239
|
+
parsl/tests/configs/petrelkube.py,sha256=KBfNWW6kMIHg-I9SHx56umgOWkeVQYzNGfMRYUeZhVY,1689
|
240
|
+
parsl/tests/configs/summit.py,sha256=RhoRPLxmWQcJ-6ukZV9QP4E9WRuBcORTJiU9xy9FN-M,1368
|
241
|
+
parsl/tests/configs/swan_htex.py,sha256=5mIYnzwOFEQ8fNsepP9QjFj9ZMW2m8u4pJluZ5BZGpw,1501
|
240
242
|
parsl/tests/configs/taskvine_ex.py,sha256=e_sXe3d-uSL8cli19-xrBloqQcEQQ4tKVa_x_aDcYGM,632
|
241
|
-
parsl/tests/configs/theta.py,sha256=
|
243
|
+
parsl/tests/configs/theta.py,sha256=4M3GPZrzSC5n5vgqfo1mxLUG8NJoivWEP_1RtPxVe7Q,1289
|
242
244
|
parsl/tests/configs/user_opts.py,sha256=8gDzQWuiKQMXq1BV6nDXpaC4dn5j0vtRNVwUyoQbUBM,6184
|
243
245
|
parsl/tests/configs/workqueue_ex.py,sha256=5gbjlGECkUd0p9PJbq-IBYARlEbEBiPpXWgHn1GC1d8,514
|
244
246
|
parsl/tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -257,18 +259,18 @@ parsl/tests/integration/test_stress/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQ
|
|
257
259
|
parsl/tests/integration/test_stress/test_python_simple.py,sha256=rYPbTdSC_qCAD5eSBy3RQtSMK-X2pBxoz2zDihFwIto,1056
|
258
260
|
parsl/tests/integration/test_stress/test_python_threads.py,sha256=yVfO3IhCgSHepmgPziCC_3ISeM5cFic2GBMF0eFs1bQ,899
|
259
261
|
parsl/tests/manual_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
260
|
-
parsl/tests/manual_tests/htex_local.py,sha256=
|
261
|
-
parsl/tests/manual_tests/test_ad_hoc_htex.py,sha256=
|
262
|
+
parsl/tests/manual_tests/htex_local.py,sha256=Uk91O7hR1pNP5CXPqq7y9dgfr_vfG2T07KHmruLHZhw,820
|
263
|
+
parsl/tests/manual_tests/test_ad_hoc_htex.py,sha256=37Bxwi-1h27D1gDzKXMwZPwlUIIxQHKwNIVEv4FeYk0,1245
|
262
264
|
parsl/tests/manual_tests/test_basic.py,sha256=Nd5uzoMqpFJruATAswO_3iixkOh7BTDEmBgZhu8qT3E,4022
|
263
|
-
parsl/tests/manual_tests/test_fan_in_out_htex_remote.py,sha256=
|
265
|
+
parsl/tests/manual_tests/test_fan_in_out_htex_remote.py,sha256=Dlo_-Tz6n1YRCtuy_eX-bljQ0NHdY6tI0pCdZ-nAZoo,2422
|
264
266
|
parsl/tests/manual_tests/test_log_filter.py,sha256=7WBbSsjisjp6SwuFy84UYDBDbmTQkBABZmJtbQeJsqg,1870
|
265
|
-
parsl/tests/manual_tests/test_memory_limits.py,sha256=
|
267
|
+
parsl/tests/manual_tests/test_memory_limits.py,sha256=8-fMGTKMzdoos0fq4EARV8MBAbZINLleqOGl-uIHGxo,2677
|
266
268
|
parsl/tests/manual_tests/test_oauth_ssh.py,sha256=v7msnSS5ywrWl7oqB_gR72oU2owrpzxaQ4vBt9C8pxI,337
|
267
269
|
parsl/tests/manual_tests/test_regression_220.py,sha256=Lskfd6R9ZboJ3-mJ7LZBGhuLc6ylksjAwewhkn_IuVI,930
|
268
270
|
parsl/tests/manual_tests/test_udp_simple.py,sha256=DPTsUoZEPx5NLG4tPAv2_FWKshNno_aofVU4u8Q95Qs,1036
|
269
271
|
parsl/tests/manual_tests/test_worker_count.py,sha256=88PkYkg-Vo6RUBnui2zIxAIXXaqTCqv0xCKUFHXaZTo,2071
|
270
272
|
parsl/tests/scaling_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
271
|
-
parsl/tests/scaling_tests/htex_local.py,sha256=
|
273
|
+
parsl/tests/scaling_tests/htex_local.py,sha256=fpQkwzycuPO7VUM6zPAxLh4Q4NZTiJ0ULPOqgSnSfD0,554
|
272
274
|
parsl/tests/scaling_tests/local_threads.py,sha256=RbqOr2ELWBDFwmCCbvmyd4zEJDvonQGRbs7Apc6cy9g,138
|
273
275
|
parsl/tests/scaling_tests/test_scale.py,sha256=Fagm9MvZNX6FBULXLEigSVeJlRikP4kWDtmIll1Alz8,3751
|
274
276
|
parsl/tests/scaling_tests/vineex_condor.py,sha256=mioOxa-dU8Yfp5rnnXGA1ysY56y6-Pb70JhwZgbeTgo,384
|
@@ -280,13 +282,13 @@ parsl/tests/site_tests/site_config_selector.py,sha256=hk8SO0QMLFk9Ef2QxSa4JTnXJx
|
|
280
282
|
parsl/tests/site_tests/test_provider.py,sha256=5rtzDNj7LWCuWdic6ifEQIfqErYOhL-MPRuaehaMXEQ,2684
|
281
283
|
parsl/tests/site_tests/test_site.py,sha256=gk23zU9BAZgctkSRAxUTolZKo6abVi45vrEavwpRCcs,1954
|
282
284
|
parsl/tests/sites/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
283
|
-
parsl/tests/sites/test_affinity.py,sha256=
|
284
|
-
parsl/tests/sites/test_concurrent.py,sha256=
|
285
|
-
parsl/tests/sites/test_dynamic_executor.py,sha256=
|
285
|
+
parsl/tests/sites/test_affinity.py,sha256=A4snIEONJk-S9AJ5yYyCsLaV845cfXnjGwBJ1FqxovI,1573
|
286
|
+
parsl/tests/sites/test_concurrent.py,sha256=XesQcYmnt0EHGYPYM40igwFCHKkcEdalg4oqQYyyrh8,1210
|
287
|
+
parsl/tests/sites/test_dynamic_executor.py,sha256=qUekWt-A5Ee_iU4DwBrTbMt1j4XnfIZuk8W1F9_0S24,1969
|
286
288
|
parsl/tests/sites/test_ec2.py,sha256=ADtKfD84xVNiOk6eWIOXZ-T8B2WfHt10nsFSsPkuLVI,1760
|
287
289
|
parsl/tests/sites/test_launchers.py,sha256=dhuL5M2e1V7XXHg89U1ytFqJamWJLp44Gf8ZOw3m6UI,334
|
288
290
|
parsl/tests/sites/test_local_adhoc.py,sha256=1oRkFUxZ1wrQHt-cARvacsyXxTbCpw533hpolD9AgD8,1266
|
289
|
-
parsl/tests/sites/test_worker_info.py,sha256=
|
291
|
+
parsl/tests/sites/test_worker_info.py,sha256=znvnOcxLPWLKZUX-UNmgamG9mox5eZEMri3NCilov24,1350
|
290
292
|
parsl/tests/sites/test_mpi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
291
293
|
parsl/tests/test_bash_apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
292
294
|
parsl/tests/test_bash_apps/test_apptimeout.py,sha256=fZP7LMSuRtiP1dp1viAWbH5cTfA5otPLsW-KksBAQaU,570
|
@@ -299,7 +301,7 @@ parsl/tests/test_bash_apps/test_memoize_ignore_args.py,sha256=jbW0DPpTaGul65KK4A
|
|
299
301
|
parsl/tests/test_bash_apps/test_memoize_ignore_args_regr.py,sha256=03jL68xJxPCtO3nlCCycwOibQHuTeC6pQdPqSoc58s0,1384
|
300
302
|
parsl/tests/test_bash_apps/test_multiline.py,sha256=mIl7_FZ5Gdj5BVd6zxEBtbzdUuRMRE7CEjIiI6lrQQg,1104
|
301
303
|
parsl/tests/test_bash_apps/test_pipeline.py,sha256=439Ml2bMn5NgiQiNcg4DPeWhsXK8WQaatvZy2PleQzQ,2444
|
302
|
-
parsl/tests/test_bash_apps/test_stdout.py,sha256=
|
304
|
+
parsl/tests/test_bash_apps/test_stdout.py,sha256=vVGzdS-AX_pxpqcW_TaSG2ycQo1Ncp45XKE5im732K4,2610
|
303
305
|
parsl/tests/test_channels/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
304
306
|
parsl/tests/test_channels/test_large_output.py,sha256=PGeNSW_sN5mR7KF1hVL2CPfktydYxo4oNz1wVQ-ENN0,595
|
305
307
|
parsl/tests/test_checkpointing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -313,12 +315,12 @@ parsl/tests/test_checkpointing/test_regression_239.py,sha256=P5kmf1LOo_qHtArkBLM
|
|
313
315
|
parsl/tests/test_checkpointing/test_task_exit.py,sha256=3-ldQhX7YVEAowWK2TiZ6nrQQ7ktfWr-qaCShtjJZK8,1721
|
314
316
|
parsl/tests/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
315
317
|
parsl/tests/test_data/test_file.py,sha256=Dqen1RJ-uLfzX8xIyJN2Qw3oVy4cFkQQVh6KC72xFDA,950
|
316
|
-
parsl/tests/test_data/test_file_apps.py,sha256=
|
317
|
-
parsl/tests/test_data/test_file_staging.py,sha256=
|
318
|
+
parsl/tests/test_data/test_file_apps.py,sha256=zTwLAf4R-lFLoqeyz9ZfFeVTs9PL9dmpKjeZEVG7C2s,1540
|
319
|
+
parsl/tests/test_data/test_file_staging.py,sha256=PTBZhTQJsNtUi38uUZOdIb8yw18-qxMoY9GFodzPYuE,674
|
318
320
|
parsl/tests/test_data/test_output_chain_filenames.py,sha256=9Mxfl9oU_x1ZSP8JSxT_t4WFCfDTprLjSeFNMm4vVxA,894
|
319
321
|
parsl/tests/test_docs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
320
322
|
parsl/tests/test_docs/test_from_slides.py,sha256=0qJHAsSN3eqn4LAFTyCAq1rIUOotBzyQg7d_rJfBoes,653
|
321
|
-
parsl/tests/test_docs/test_kwargs.py,sha256
|
323
|
+
parsl/tests/test_docs/test_kwargs.py,sha256=-rMtAtarg2FOdxMuDLsZY5Crn_jmSwtelMwRNEtTlVk,925
|
322
324
|
parsl/tests/test_docs/test_tutorial_1.py,sha256=leY0mpZz8_BGhPCai7FOVMGhUtv_yeYabAXgghA_DxI,1438
|
323
325
|
parsl/tests/test_docs/test_workflow1.py,sha256=icOXUfSLM_ljekoM5jXu3Kr0Yg2vLoiYj5lh_Sb22Xk,976
|
324
326
|
parsl/tests/test_docs/test_workflow2.py,sha256=ZcDFZDq-VbWcX1-QF07FNOYVDEv9te61ayTc5o2psQ4,1150
|
@@ -340,7 +342,8 @@ parsl/tests/test_error_handling/test_wrap_with_logs.py,sha256=AHQZj7wae759FOcAUe
|
|
340
342
|
parsl/tests/test_flowcontrol/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
341
343
|
parsl/tests/test_htex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
342
344
|
parsl/tests/test_htex/test_cpu_affinity_explicit.py,sha256=9t6pI6VwFFHRv0cZDJB-ohIlYOezc9ugysouQbOzSqQ,1413
|
343
|
-
parsl/tests/test_htex/
|
345
|
+
parsl/tests/test_htex/test_htex.py,sha256=8bEP5uFcUXUEpXLGBCx04HpI9kYrlN0_4SwYiXasFHQ,1690
|
346
|
+
parsl/tests/test_htex/test_htex_zmq_binding.py,sha256=MQWAL7XxaI1P2k_VUgm5DKD4GVEn5c2Y8MEyOSABRA4,2937
|
344
347
|
parsl/tests/test_monitoring/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
345
348
|
parsl/tests/test_monitoring/test_basic.py,sha256=uXWx2O2Y2gfSO4e8zTjyj5bucKHG9OVzMxQNnq9abeY,2776
|
346
349
|
parsl/tests/test_monitoring/test_db_locks.py,sha256=PGoRmvqA6AYPXTPHOZPLH38Z4D6EEgSb6ZgNfZtwIGk,2910
|
@@ -360,7 +363,7 @@ parsl/tests/test_python_apps/test_depfail_propagation.py,sha256=3q3HlVWrOixFtXWB
|
|
360
363
|
parsl/tests/test_python_apps/test_fail.py,sha256=0Gld8LS6NB0Io1bU82vVR73twkuL5nW0ifKbIUcsJcw,1671
|
361
364
|
parsl/tests/test_python_apps/test_fibonacci_iterative.py,sha256=ly2s5HuB9R53Z2FM_zy0WWdOk01iVhgcwSpQyK6ErIY,573
|
362
365
|
parsl/tests/test_python_apps/test_fibonacci_recursive.py,sha256=q7LMFcu_pJSNPdz8iY0UiRoIweEWIBGwMjQffHWAuDc,592
|
363
|
-
parsl/tests/test_python_apps/test_futures.py,sha256=
|
366
|
+
parsl/tests/test_python_apps/test_futures.py,sha256=Zj15RFS1L8jZ7X1ji7-kfbLx75aKMvWvwEGMjqXMrVc,2354
|
364
367
|
parsl/tests/test_python_apps/test_garbage_collect.py,sha256=RPntrLuzPkeNbhS7mmqEnHbyOcuV1YVppgZ8BaX-h84,1076
|
365
368
|
parsl/tests/test_python_apps/test_import_fail.py,sha256=Vd8IMa_UsbHYkr3IGnS-rgGb6zKxB1tOTqMZY5lc_xY,691
|
366
369
|
parsl/tests/test_python_apps/test_join.py,sha256=g4VKJwKdIqDLbuNCkIpjVfME0q4mAci_iQ8wAx3uVUc,2679
|
@@ -389,12 +392,12 @@ parsl/tests/test_regression/test_226.py,sha256=9EumcLPJzvbD0IUD6-LmPFbf86gaA1Kj8
|
|
389
392
|
parsl/tests/test_regression/test_2652.py,sha256=i_3RuExcOmP7cc87xjI3wYHUgY5Mpu3UU4Zc9A-9EeE,847
|
390
393
|
parsl/tests/test_regression/test_69a.py,sha256=9KTQc7WpsOLJMrszJo7ZBQU40cbbFeZzi-3y9ryu--Y,1903
|
391
394
|
parsl/tests/test_regression/test_854.py,sha256=2B4psMwiA6zhpKAZST-d_pqI3wS44BmYAzoJkCKIrWA,1882
|
392
|
-
parsl/tests/test_regression/test_97_parallelism_0.py,sha256=
|
395
|
+
parsl/tests/test_regression/test_97_parallelism_0.py,sha256=PwHxwQirqLJUeBhsNSzUuNR7g9CacVwcM6BRPwZCcow,1593
|
393
396
|
parsl/tests/test_regression/test_98.py,sha256=ZNTA-USpmH85Mt0nu3KFQ1qqmXsyHtYMZWZY0grzuYA,453
|
394
397
|
parsl/tests/test_scaling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
395
|
-
parsl/tests/test_scaling/test_block_error_handler.py,sha256=
|
396
|
-
parsl/tests/test_scaling/test_regression_1621.py,sha256=
|
397
|
-
parsl/tests/test_scaling/test_scale_down.py,sha256=
|
398
|
+
parsl/tests/test_scaling/test_block_error_handler.py,sha256=VFKs_jq7yd7bpdfYva3Sa_TBS8VcjGUS6YJ9Y34RbyI,6050
|
399
|
+
parsl/tests/test_scaling/test_regression_1621.py,sha256=iRu3GFsg2l9J61AVZKWLc6zJcvI2JYD0WvtTYDSv22I,1770
|
400
|
+
parsl/tests/test_scaling/test_scale_down.py,sha256=waHoceBxuCPf2mvUKODBPXdIAiox8DRKcz9bYjhXfU8,2786
|
398
401
|
parsl/tests/test_serialization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
399
402
|
parsl/tests/test_serialization/test_2555_caching_deserializer.py,sha256=J8__b4djA5tErd8FUSXGkGcdXlW2KHbBWRbCTAnV08Q,767
|
400
403
|
parsl/tests/test_serialization/test_basic.py,sha256=51KshqIk2RNr7S2iSkl5tZo40CJBb0h6uby8YPgOGlg,543
|
@@ -417,12 +420,12 @@ parsl/tests/test_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
417
420
|
parsl/tests/test_utils/test_representation_mixin.py,sha256=kUZeIDwA2rlbJ3-beGzLLwf3dOplTMCrWJN87etHcyY,1633
|
418
421
|
parsl/usage_tracking/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
419
422
|
parsl/usage_tracking/usage.py,sha256=TEuAIm_U_G2ojZxvd0bbVa6gZlU61_mVRa2yJC9mGiI,7555
|
420
|
-
parsl-2024.
|
421
|
-
parsl-2024.
|
422
|
-
parsl-2024.
|
423
|
-
parsl-2024.
|
424
|
-
parsl-2024.
|
425
|
-
parsl-2024.
|
426
|
-
parsl-2024.
|
427
|
-
parsl-2024.
|
428
|
-
parsl-2024.
|
423
|
+
parsl-2024.2.5.data/scripts/exec_parsl_function.py,sha256=NtWNeBvRqksej38eRPw8zPBJ1CeW6vgaitve0tfz_qc,7801
|
424
|
+
parsl-2024.2.5.data/scripts/parsl_coprocess.py,sha256=kzX_1RI3V2KMKs6L-il4I1qkLNVodDKFXN_1FHB9fmM,6031
|
425
|
+
parsl-2024.2.5.data/scripts/process_worker_pool.py,sha256=GGDB2AYURSBFcWNEK_2ZJProKAixKQWIn1Sz0b6D3yQ,35756
|
426
|
+
parsl-2024.2.5.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
427
|
+
parsl-2024.2.5.dist-info/METADATA,sha256=j4rzN1CYqG0BrudFV0_QIfpVtD-aOX8MRNZzWv5SwY0,3959
|
428
|
+
parsl-2024.2.5.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
429
|
+
parsl-2024.2.5.dist-info/entry_points.txt,sha256=XqnsWDYoEcLbsMcpnYGKLEnSBmaIe1YoM5YsBdJG2tI,176
|
430
|
+
parsl-2024.2.5.dist-info/top_level.txt,sha256=PIheYoUFQtF2icLsgOykgU-Cjuwr2Oi6On2jo5RYgRM,6
|
431
|
+
parsl-2024.2.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|