allocate_blocks_cache
Applicability
Product |
Supported (√/x) |
|---|---|
Atlas 350 Accelerator Card |
x |
√ |
|
√ |
|
x |
|
x |
|
x |
Note: For
Function Description
In the PagedAttention scenario, allocates the cache with multiple blocks. After the cache is successfully allocated, the memory can be released through deallocate_blocks_cache.
Prototype
1 | allocate_blocks_cache(cache_desc: CacheDesc, blocks_cache_key: Optional[BlocksCacheKey] = None) |
Parameters
Parameter |
Data Type |
Description |
|---|---|---|
cache_desc |
Cache description. |
|
blocks_cache_key |
Optional[BlocksCacheKey] |
Indexes a blocks cache. |
Example
1 2 3 4 | from llm_datadist import * ... blocks_cache_key = BlocksCacheKey(1, 0) blocks_cache = cache_manager.allocate_blocks_cache(cache_desc, blocks_cache_key) |
Returns
In normal cases, Cache 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.
Restrictions
The memory pool must be configured before this API call.