Skip to content

Commit

Permalink
A few more small updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
drewoldag committed Jul 30, 2024
1 parent b3de641 commit b7ae010
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example_runtime_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ search_config_filepath = "/home/drew/code/kbmod-wf/dev_staging/search_config.yam

[apps.reproject_wu]
# Number of processors to use for parallelizing the reprojection
n_workers = 8
n_workers = 32
# The name of the observation site to use for reflex correction
observation_site = "ctio"

Expand Down
1 change: 0 additions & 1 deletion src/kbmod_wf/resource_configs/klone_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ def klone_resource_config():
),
HighThroughputExecutor(
label="gpu",
available_accelerators=1,
max_workers_per_node=1,
provider=SlurmProvider(
partition="ckpt-g2",
Expand Down
2 changes: 1 addition & 1 deletion src/kbmod_wf/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def uri_to_ic(inputs=[], outputs=[], runtime_config={}, logging_file=None):


@python_app(
cache=True, executors=get_executors(["local_dev_testing", "small_cpu"]), ignore_for_cache=["logging_file"]
cache=True, executors=get_executors(["local_dev_testing", "large_mem"]), ignore_for_cache=["logging_file"]
)
def ic_to_wu(inputs=[], outputs=[], runtime_config={}, logging_file=None):
from kbmod_wf.utilities.logger_utilities import configure_logger
Expand Down

0 comments on commit b7ae010

Please sign in to comment.