openvino_genai.KVCrushAnchorPointMode#

class openvino_genai.KVCrushAnchorPointMode#

Bases: pybind11_object

Represents the anchor point types for KVCrush cache eviction
param KVCrushAnchorPointMode.RANDOM:

Random binary vector will be used as anchor point

param KVCrushAnchorPointMode.ZEROS:

Vector of all zeros will be used as anchor point

param KVCrushAnchorPointMode.ONES:

Vector of all ones will be used as anchor point

param KVCrushAnchorPointMode.MEAN:

Mean of indicator feature vector to be used as anchor point

param KVCrushAnchorPointMode.ALTERNATE:

Alternating 0s and 1s will be used as anchor point

Members:

RANDOM

ZEROS

ONES

MEAN

ALTERNATE

__init__(self: openvino_genai.py_openvino_genai.KVCrushAnchorPointMode, value: SupportsInt) None#

Methods

__delattr__(name, /)

Implement delattr(self, name).

__dir__()

Default dir() implementation.

__eq__(self, other, /)

__format__(format_spec, /)

Default object formatter.

__ge__(value, /)

Return self>=value.

__getattribute__(name, /)

Return getattr(self, name).

__getstate__(self, /)

__gt__(value, /)

Return self>value.

__hash__(self, /)

__index__(self, /)

__init__(self, value)

__init_subclass__

This method is called when a class is subclassed.

__int__(self, /)

__le__(value, /)

Return self<=value.

__lt__(value, /)

Return self<value.

__ne__(self, other, /)

__new__(**kwargs)

__reduce__()

Helper for pickle.

__reduce_ex__(protocol, /)

Helper for pickle.

__repr__(self, /)

__setattr__(name, value, /)

Implement setattr(self, name, value).

__setstate__(self, state, /)

__sizeof__()

Size of object in memory, in bytes.

__str__(self, /)

__subclasshook__

Abstract classes can override this to customize issubclass().

_pybind11_conduit_v1_

Attributes

ALTERNATE

MEAN

ONES

RANDOM

ZEROS

__annotations__

__entries

__members__

name

value

ALTERNATE = <KVCrushAnchorPointMode.ALTERNATE: 4>#
MEAN = <KVCrushAnchorPointMode.MEAN: 3>#
ONES = <KVCrushAnchorPointMode.ONES: 2>#
RANDOM = <KVCrushAnchorPointMode.RANDOM: 0>#
ZEROS = <KVCrushAnchorPointMode.ZEROS: 1>#
__annotations__ = {}#
__class__#

alias of pybind11_type

__delattr__(name, /)#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__eq__(self: object, other: object, /) bool#
__format__(format_spec, /)#

Default object formatter.

Return str(self) if format_spec is empty. Raise TypeError otherwise.

__ge__(value, /)#

Return self>=value.

__getattribute__(name, /)#

Return getattr(self, name).

__getstate__(self: object, /) int#
__gt__(value, /)#

Return self>value.

__hash__(self: object, /) int#
__index__(self: openvino_genai.py_openvino_genai.KVCrushAnchorPointMode, /) int#
__init__(self: openvino_genai.py_openvino_genai.KVCrushAnchorPointMode, value: SupportsInt) None#
__init_subclass__()#

This method is called when a class is subclassed.

The default implementation does nothing. It may be overridden to extend subclasses.

__int__(self: openvino_genai.py_openvino_genai.KVCrushAnchorPointMode, /) int#
__le__(value, /)#

Return self<=value.

__lt__(value, /)#

Return self<value.

__members__ = {'ALTERNATE': <KVCrushAnchorPointMode.ALTERNATE: 4>, 'MEAN': <KVCrushAnchorPointMode.MEAN: 3>, 'ONES': <KVCrushAnchorPointMode.ONES: 2>, 'RANDOM': <KVCrushAnchorPointMode.RANDOM: 0>, 'ZEROS': <KVCrushAnchorPointMode.ZEROS: 1>}#
__ne__(self: object, other: object, /) bool#
__new__(**kwargs)#
__reduce__()#

Helper for pickle.

__reduce_ex__(protocol, /)#

Helper for pickle.

__repr__(self: object, /) str#
__setattr__(name, value, /)#

Implement setattr(self, name, value).

__setstate__(self: openvino_genai.py_openvino_genai.KVCrushAnchorPointMode, state: SupportsInt, /) None#
__sizeof__()#

Size of object in memory, in bytes.

__str__(self: object, /) str#
__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.__subclasscheck__(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

_pybind11_conduit_v1_()#
property name#
property value#