Skip to content
Open
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 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")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why introduce a new mode?

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",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This item has been deleted

]
Loading