Skip to content

Commit

Permalink
Merge pull request #16 from TianyiQ/main
Browse files Browse the repository at this point in the history
fix(evaluation): implementing FORCE_TP for <10B model
  • Loading branch information
TianyiQ authored Nov 16, 2024
2 parents 8da2220 + aa93070 commit 3a1b3c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/abstractions/backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ def vllm_process_batch(
model_size = get_model_size(model_repoid_or_path)
assert model_size is not None

if model_size <= 10:
if model_size <= 10 and not os.environ.get("FORCE_TP"):
args = [
"python",
"-m",
Expand Down

0 comments on commit 3a1b3c9

Please sign in to comment.