enable_cache_manager

Applicability

Product

Supported (√/x)

Atlas 350 Accelerator Card

x

Atlas A3 training product/Atlas A3 inference product

Atlas A2 training product/Atlas A2 inference product

Atlas 200I/500 A2 inference product

x

Atlas inference product

x

Atlas training product

x

Note: For Atlas A2 training product/Atlas A2 inference product, only the Atlas 800I A2 inference server and A200I A2 Box heterogeneous subrack are supported.

Function Description

Enables or disables CacheManager, corresponding to the llm.EnableCacheManager configuration item at the bottom layer.

Prototype

1
enable_cache_manager(self, enable_cache_manager: bool)

Parameters

Parameter

Data Type

Description

enable_cache_manager

bool

Whether to enable the CacheManager mode. This parameter must be set to True.

  • True: enabled.
  • False: disabled. If this parameter is not set, the CacheManager mode is disabled by default.

For Atlas 350 Accelerator Card, this parameter cannot be set to False.

Example

1
2
3
from llm_datadist import LLMConfig
llm_config = LLMConfig()
llm_config.enable_cache_manager = True

Returns

In normal cases, no value is returned.

If a parameter is incorrect, a TypeError or ValueError may be thrown.

Restrictions

None