Skip to content

Commit

Permalink
added batch size to SUT Server (#1750)
Browse files Browse the repository at this point in the history
  • Loading branch information
anandhu-eng authored Jun 25, 2024
1 parent eb6714e commit a31cced
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion language/llama2-70b/SUT.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def __del__(self):


class SUTServer(SUT):
def __init__(self, model_path=None, dtype="bfloat16", device="cpu", total_sample_count=24576, dataset_path=None, workers=1):
def __init__(self, model_path=None, dtype="bfloat16", device="cpu", total_sample_count=24576, dataset_path=None, batch_size=None, workers=1):

super().__init__(model_path=model_path, dtype=dtype, device=device, total_sample_count=total_sample_count, dataset_path=dataset_path, workers=workers)

Expand Down

0 comments on commit a31cced

Please sign in to comment.