Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TaskVine executor: add parsl serialize module to default library context #3604

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion parsl/executors/taskvine/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import subprocess
import uuid

import parsl.serialize
from parsl.executors.taskvine import exec_parsl_function
from parsl.executors.taskvine.utils import VineTaskToParsl, run_parsl_function
from parsl.process_loggers import wrap_with_logs
Expand Down Expand Up @@ -249,7 +250,8 @@ def _taskvine_submit_wait(ready_task_queue=None,
run_parsl_function,
poncho_env=poncho_env_path,
init_command=manager_config.init_command,
add_env=add_env)
add_env=add_env,
hoisting_modules=[parsl.serialize, run_parsl_function])

# Configure the library if provided
if manager_config.library_config:
Expand Down
Loading