Skip to content

Commit cfafb8c

Browse files
committed
disable coprocess
1 parent 66168f7 commit cfafb8c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

configs/workqueue.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ ReferenceEvaluation:
1212
cores_per_worker: 1
1313
mpi_command: 'mpirun -np {}' # cp2k on conda-forge comes with OpenMPI (not MPICH as in container)
1414
mode: 'workqueue'
15+
workqueue_use_coprocess: false
1516
...

psiflow/execution.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -253,13 +253,13 @@ def parse_config(yaml_dict: dict):
253253
"parsl_log_level": "INFO",
254254
"psiflow_log_level": "INFO",
255255
"usage_tracking": True,
256-
"retries": 1,
256+
"retries": 2,
257257
"strategy": "simple",
258258
"max_idletime": 20,
259259
"default_threads": 1,
260260
"htex_address": None,
261261
"mode": "workqueue",
262-
"workqueue_use_coprocess": True,
262+
"workqueue_use_coprocess": False, # CP2K doesn't like this
263263
}
264264
forced = {
265265
"initialize_logging": False, # manual; to move parsl.log one level up

0 commit comments

Comments
 (0)