_pyngraph.PyRTMap

class _pyngraph.PyRTMap

Bases: pybind11_builtins.pybind11_object

ngraph.impl.PyRTMap makes bindings for std::map<std::string, std::shared_ptr<ngraph::Variant>>, which can later be used as ngraph::Node::RTMap

__init__(self: _pyngraph.PyRTMap) None

Methods

__bool__(self)

Check whether the map is nonempty

__contains__(*args, **kwargs)

Overloaded function.

__delattr__(name, /)

Implement delattr(self, name).

__delitem__(self, arg0)

__dir__()

Default dir() implementation.

__eq__(value, /)

Return self==value.

__format__(format_spec, /)

Default object formatter.

__ge__(value, /)

Return self>=value.

__getattribute__(name, /)

Return getattr(self, name).

__getitem__(*args, **kwargs)

Overloaded function.

__gt__(value, /)

Return self>value.

__hash__()

Return hash(self).

__init__(self)

__init_subclass__

This method is called when a class is subclassed.

__iter__(self)

__le__(value, /)

Return self<=value.

__len__(self)

__lt__(value, /)

Return self<value.

__ne__(value, /)

Return self!=value.

__new__(**kwargs)

__reduce__()

Helper for pickle.

__reduce_ex__(protocol, /)

Helper for pickle.

__repr__()

Return repr(self).

__setattr__(name, value, /)

Implement setattr(self, name, value).

__setitem__(*args, **kwargs)

Overloaded function.

__sizeof__()

Size of object in memory, in bytes.

__str__()

Return str(self).

__subclasshook__

Abstract classes can override this to customize issubclass().

items(self)

keys(self)

values(self)

Attributes

__pybind11_module_local_v4_gcc_libstdcpp_cxxabi1014__

__bool__(self: _pyngraph.PyRTMap) bool

Check whether the map is nonempty

__class__

alias of pybind11_builtins.pybind11_type

__contains__(*args, **kwargs)

Overloaded function.

  1. __contains__(self: _pyngraph.PyRTMap, arg0: str) -> bool

  2. __contains__(self: _pyngraph.PyRTMap, arg0: object) -> bool

__delattr__(name, /)

Implement delattr(self, name).

__delitem__(self: _pyngraph.PyRTMap, arg0: str) None
__dir__()

Default dir() implementation.

__eq__(value, /)

Return self==value.

__format__(format_spec, /)

Default object formatter.

__ge__(value, /)

Return self>=value.

__getattribute__(name, /)

Return getattr(self, name).

__getitem__(*args, **kwargs)

Overloaded function.

  1. __getitem__(self: _pyngraph.PyRTMap, arg0: str) -> ov::Any

  2. __getitem__(self: _pyngraph.PyRTMap, arg0: str) -> ov::RuntimeAttribute

__gt__(value, /)

Return self>value.

__hash__()

Return hash(self).

__init__(self: _pyngraph.PyRTMap) None
__init_subclass__()

This method is called when a class is subclassed.

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

__iter__(self: _pyngraph.PyRTMap) Iterator
__le__(value, /)

Return self<=value.

__len__(self: _pyngraph.PyRTMap) int
__lt__(value, /)

Return self<value.

__ne__(value, /)

Return self!=value.

__new__(**kwargs)
__pybind11_module_local_v4_gcc_libstdcpp_cxxabi1014__ = <capsule object NULL>
__reduce__()

Helper for pickle.

__reduce_ex__(protocol, /)

Helper for pickle.

__repr__()

Return repr(self).

__setattr__(name, value, /)

Implement setattr(self, name, value).

__setitem__(*args, **kwargs)

Overloaded function.

  1. __setitem__(self: _pyngraph.PyRTMap, arg0: str, arg1: ov::Any) -> None

  2. __setitem__(self: _pyngraph.PyRTMap, arg0: str, arg1: str) -> None

  3. __setitem__(self: _pyngraph.PyRTMap, arg0: str, arg1: int) -> None

__sizeof__()

Size of object in memory, in bytes.

__str__()

Return str(self).

__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).

items(self: _pyngraph.PyRTMap) _pyngraph.ItemsView[PyRTMap]
keys(self: _pyngraph.PyRTMap) _pyngraph.KeysView[PyRTMap]
values(self: _pyngraph.PyRTMap) _pyngraph.ValuesView[PyRTMap]