Skip to content

Commit

Permalink
FEAT-modin-project#6990: Implement lazy execution for the Ray virtual…
Browse files Browse the repository at this point in the history
… partitions.
  • Loading branch information
AndreyPavlenko committed Apr 16, 2024
1 parent 6d64e08 commit 92fe2f7
Show file tree
Hide file tree
Showing 9 changed files with 911 additions and 83 deletions.
2 changes: 1 addition & 1 deletion modin/config/envvars.py
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@ class LazyExecution(EnvironmentVariable, type=str):
"""

varname = "MODIN_LAZY_EXECUTION"
choices = ("Auto", "On", "Off")
choices = ("Auto", "On", "Off", "Axis")
default = "Auto"


Expand Down
8 changes: 7 additions & 1 deletion modin/core/execution/ray/common/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,18 @@

"""Common utilities for Ray execution engine."""

from .engine_wrapper import MaterializationHook, RayWrapper, SignalActor
from .engine_wrapper import (
MaterializationHook,
RayObjectRefTypes,
RayWrapper,
SignalActor,
)
from .utils import initialize_ray

__all__ = [
"initialize_ray",
"RayWrapper",
"MaterializationHook",
"SignalActor",
"RayObjectRefTypes",
]
Loading

0 comments on commit 92fe2f7

Please sign in to comment.