"ssh:/git@developer.sourcefind.cn:2222/OpenDAS/vllm_cscc.git" did not exist on "7d98f09b1cc06ba485d8c79e1f2f5b0062e2e2f6"
Unverified Commit 7f83b4ee authored by Jialin Ouyang's avatar Jialin Ouyang Committed by GitHub
Browse files

[Easy] Get rid of unnecessary paraenthesis in kv_cache_manager (#26842)


Signed-off-by: default avatarJialin Ouyang <Jialin.Ouyang@gmail.com>
parent 5c3bae1a
...@@ -219,7 +219,7 @@ class KVCacheManager: ...@@ -219,7 +219,7 @@ class KVCacheManager:
self.prefix_cache_stats.queries += request.num_tokens self.prefix_cache_stats.queries += request.num_tokens
self.prefix_cache_stats.hits += num_new_computed_tokens self.prefix_cache_stats.hits += num_new_computed_tokens
return (self.create_kv_cache_blocks(computed_blocks), num_new_computed_tokens) return self.create_kv_cache_blocks(computed_blocks), num_new_computed_tokens
def allocate_slots( def allocate_slots(
self, self,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment