Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class BlockAllocationTaskScheduler(TaskSchedulerBase):
Examples:

>>> import numpy as np
>>> from executorlib.interactive.blockallocation import BlockAllocationTaskScheduler
>>> from executorlib.task_scheduler.interactive.blockallocation import BlockAllocationTaskScheduler
>>>
>>> def calc(i, j, k):
>>> from mpi4py import MPI
Expand Down
2 changes: 1 addition & 1 deletion executorlib/task_scheduler/interactive/onetoone.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class OneProcessTaskScheduler(TaskSchedulerBase):
Examples:

>>> import numpy as np
>>> from executorlib.interactive.onetoone import OneProcessTaskScheduler
>>> from executorlib.task_scheduler.interactive.onetoone import OneProcessTaskScheduler
>>>
>>> def calc(i, j, k):
>>> from mpi4py import MPI
Expand Down
Loading