"vscode:/vscode.git/clone" did not exist on "f4b76056ee5c3a3f917527da5be3786e1b8530c6"
Unverified Commit b7b23da4 authored by MingzhenHan's avatar MingzhenHan Committed by GitHub
Browse files

[Bugfix] Fix comment typo of get_num_common_prefix_blocks() (#21827)


Signed-off-by: default avatarMingzhenHan <hanmingzhen2002@outlook.com>
parent fdde1822
...@@ -130,10 +130,10 @@ class KVCacheCoordinator(ABC): ...@@ -130,10 +130,10 @@ class KVCacheCoordinator(ABC):
Args: Args:
request_id: The request ID. request_id: The request ID.
block_hashes: The block hashes of the request. num_running_requests: The number of requests in the RUNNING state.
Returns: Returns:
The number of common prefix blocks. list[int]: The number of common prefix blocks.
""" """
num_blocks_per_group = [ num_blocks_per_group = [
manager.get_num_common_prefix_blocks(request_id, manager.get_num_common_prefix_blocks(request_id,
......
...@@ -181,7 +181,7 @@ class SingleTypeKVCacheManager(ABC): ...@@ -181,7 +181,7 @@ class SingleTypeKVCacheManager(ABC):
Args: Args:
request_id: The request ID. request_id: The request ID.
block_hashes: The block hashes of the request. num_running_requests: The number of requests in the RUNNING state.
Returns: Returns:
The number of common prefix blocks. The number of common prefix blocks.
......
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