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

feat: introduce MQAphroditeEngine #1056

Merged
merged 9 commits into from
Dec 31, 2024
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
6 changes: 3 additions & 3 deletions aphrodite/common/envs.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
APHRODITE_DYNAMIC_ROPE_SCALING: bool = False
APHRODITE_TEST_FORCE_FP8_MARLIN: bool = False
APHRODITE_PLUGINS: Optional[List[str]] = None
APHRODITE_RPC_GET_DATA_TIMEOUT_MS: int = 5000
APHRODITE_RPC_TIMEOUT: int = 5000
APHRODITE_FORCE_SINGLE_USER_PREFIX_CACHE: bool = False
APHRODITE_TEST_DYNAMO_GRAPH_CAPTURE: int = 0
APHRODITE_TEST_DYNAMO_FULLGRAPH_CAPTURE: int = 0
Expand Down Expand Up @@ -383,8 +383,8 @@ def get_default_config_root():

# Time in ms for the zmq client to wait for a response from the backend
# server for simple data operations
"APHRODITE_RPC_GET_DATA_TIMEOUT_MS":
lambda: int(os.getenv("APHRODITE_RPC_GET_DATA_TIMEOUT_MS", "5000")),
"APHRODITE_RPC_TIMEOUT":
lambda: int(os.getenv("APHRODITE_RPC_TIMEOUT", "5000")),

# a list of plugin names to load, separated by commas.
# if this is not set, it means all plugins will be loaded
Expand Down
Loading
Loading