Skip to content

Commit b99afec

Browse files
author
chibu
committed
update branch names
1 parent b8b51e9 commit b99afec

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

examples/guidellm_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
data_type="emulated",
1515
max_seconds=30,
1616
data="prompt_tokens=512,generated_tokens=256,output_tokens=256",
17-
branch = "update_guidellm",
17+
#branch = "update_guidellm",
1818
#vllm_kwargs={"enable-chunked-prefill": True}
1919
)
2020

src/automation/tasks/base_task.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ def __init__(
1919
packages: Optional[Sequence[str]]=None,
2020
task_type: str="training",
2121
):
22-
base_packages = [f"git+https://github.com/neuralmagic/research.git@{branch}"]
22+
branch_name = branch or DEFAULT_RESEARCH_BRANCH
23+
base_packages = [f"git+https://github.com/neuralmagic/research.git@{branch_name}"]
2324

2425
if packages is not None:
2526
packages = list(set(packages + base_packages))

0 commit comments

Comments
 (0)