Skip to content

Commit d57fba2

Browse files
author
Varun Sundar Rabindranath
committed
remove unnecessary hashing
Signed-off-by: Varun Sundar Rabindranath <varun@neuralmagic.com>
1 parent b8e4387 commit d57fba2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

vllm/config.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3312,9 +3312,7 @@ def compute_hash(self) -> str:
33123312
# The tensor sizes and strides get captured in the torch.compile
33133313
# graph explicitly.
33143314
vllm_factors.append(
3315-
hashlib.md5(
3316-
str(self.scheduler_config.max_num_batched_tokens).encode()
3317-
).hexdigest())
3315+
str(self.scheduler_config.max_num_batched_tokens))
33183316
else:
33193317
vllm_factors.append("None")
33203318
if self.speculative_config:

0 commit comments

Comments
 (0)