Skip to content

Commit

Permalink
disable coprocess
Browse files Browse the repository at this point in the history
  • Loading branch information
svandenhaute committed Dec 9, 2023
1 parent 66168f7 commit cfafb8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions configs/workqueue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ ReferenceEvaluation:
cores_per_worker: 1
mpi_command: 'mpirun -np {}' # cp2k on conda-forge comes with OpenMPI (not MPICH as in container)
mode: 'workqueue'
workqueue_use_coprocess: false
...
4 changes: 2 additions & 2 deletions psiflow/execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,13 +253,13 @@ def parse_config(yaml_dict: dict):
"parsl_log_level": "INFO",
"psiflow_log_level": "INFO",
"usage_tracking": True,
"retries": 1,
"retries": 2,
"strategy": "simple",
"max_idletime": 20,
"default_threads": 1,
"htex_address": None,
"mode": "workqueue",
"workqueue_use_coprocess": True,
"workqueue_use_coprocess": False, # CP2K doesn't like this
}
forced = {
"initialize_logging": False, # manual; to move parsl.log one level up
Expand Down

0 comments on commit cfafb8c

Please sign in to comment.