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

Remove Low Latency Executor #2580

Merged
merged 3 commits into from
Jan 31, 2023
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
2 changes: 1 addition & 1 deletion docs/devguide/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ Released on Jan 18th, 2019
New Functionality
^^^^^^^^^^^^^^^^^

* `parsl.executors.LowLatencyExecutor`: a new executor designed to address use-cases with tight latency requirements
* parsl.executors.LowLatencyExecutor: a new executor designed to address use-cases with tight latency requirements
such as model serving (Machine Learning), function serving and interactive analyses is now available.
* New options in `parsl.executors.HighThroughputExecutor`:
* ``suppress_failure``: Enable suppression of worker rejoin errors.
Expand Down
1 change: 0 additions & 1 deletion docs/reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ Executors
parsl.executors.HighThroughputExecutor
parsl.executors.WorkQueueExecutor
parsl.executors.ExtremeScaleExecutor
parsl.executors.LowLatencyExecutor
parsl.executors.FluxExecutor
parsl.executors.swift_t.TurbineExecutor

Expand Down
2 changes: 0 additions & 2 deletions parsl/executors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@
from parsl.executors.workqueue.executor import WorkQueueExecutor
from parsl.executors.high_throughput.executor import HighThroughputExecutor
from parsl.executors.extreme_scale.executor import ExtremeScaleExecutor
from parsl.executors.low_latency.executor import LowLatencyExecutor
from parsl.executors.flux.executor import FluxExecutor

__all__ = ['ThreadPoolExecutor',
'HighThroughputExecutor',
'ExtremeScaleExecutor',
'LowLatencyExecutor',
'WorkQueueExecutor',
'FluxExecutor']
Empty file.
272 changes: 0 additions & 272 deletions parsl/executors/low_latency/executor.py

This file was deleted.

Loading