pull_cache
Applicability
Product |
Supported (√/x) |
|---|---|
Atlas 350 Accelerator Card |
x |
√ |
|
√ |
|
x |
|
x |
|
x |
Note: For
Function Description
Obtains the cache from the peer node to the local cache based on CacheKey.
Prototype
1 2 3 4 | pull_cache(cache_key: Union[CacheKey, CacheKeyByIdAndIndex], cache: Cache, batch_index: int = 0, size: int = -1, **kwargs) |
Parameters
Parameter |
Data Type |
Description |
|---|---|---|
cache_key |
Union[CacheKey, CacheKeyByIdAndIndex] |
CacheKey to be pulled. Pass CacheKey to obtain the value by req_id, prefix_id, or model_id. Pass CacheKeyByIdAndIndex to obtain the value by cache_id or batch_index. |
cache |
Target cache. |
|
batch_index |
int |
Batch index. The default value is 0. |
size |
int |
Set this parameter to an integer greater than 0, indicating the size of the tensor to be pulled. If this parameter is set to -1, it indicates a full copy, where the actual size is the size of a single local KV entry. The default value is -1. |
**kwargs |
N/A |
This is the typical way to handle extensible parameters in Python functions: parameters are passed in using the key=value format. For details about optional parameters, see Table 1. |
Parameter |
Data Type |
Description |
|---|---|---|
src_layer_range |
Optional[range] |
(Optional) Used for pulling KVs by layer. Layer range of the transmission source. The step can only be 1. If this parameter is not set, data at all layers is transmitted. Note that this is the index of the layer, not the index of the tensor. That is, one layer corresponds to N contiguous tensors (K/V). If memory allocation is required, the tensors must be arranged in KV order. Other arrangements are not supported. N is the value of tensor_num_per_layer. The default value is 2. |
dst_layer_range |
Optional[range] |
(Optional) Used for pulling KVs by layer. Layer range of the transmission destination. The step can only be 1. If this parameter is not set, data at all layers is transmitted. Note that this is the index of the layer, not the index of the tensor. That is, one layer corresponds to N contiguous tensors (K/V). If memory allocation is required, the tensors must be arranged in KV order. Other arrangements are not supported. N is the value of tensor_num_per_layer. The default value is 2. |
tensor_num_per_layer |
Optional[int] |
(Optional) Number of tensors at each layer. The default value is 2. The value range is [1, total number of tensors in the cache]. When src_layer_range or dst_layer_range uses non-default values, tensor_num_per_layer can either remain at its default value or be set to another value, which must be divisible by the total number of tensors in the cache. |
Example
Click GitCode, select the matching version, and obtain the sample from the examples/python directory.
Returns
In normal cases, no value is returned.
If the input data type is incorrect, the TypeError or ValueError exception is reported.
If the execution time exceeds the value of sync_kv_timeout, an LLMException is thrown.
If the layer_range parameter is abnormal, an LLMException is thrown.
Restrictions
- When enable_remote_cache_accessible is set to True, the cache_key type must be CacheKeyByIdAndIndex.
- In D2H and H2D transmission scenarios, the device memory pool must be configured during host initialization, with the memory pool size set to at least 100 MB.