mxnet
Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Static Protected Member Functions | Protected Attributes | Friends | List of all members
mxnet::runtime::MapObj Class Reference

Shared content of all specializations of hash map. More...

#include <container_ext.h>

Inheritance diagram for mxnet::runtime::MapObj:
Inheritance graph
Collaboration diagram for mxnet::runtime::MapObj:
Collaboration graph

Public Types

using key_type = ObjectRef
 Type of the keys in the hash map. More...
 
using mapped_type = ObjectRef
 Type of the values in the hash map. More...
 
using ContainerType = std::unordered_map< ObjectRef, ObjectRef, ObjectRefHash, ObjectRefEqual >
 Type of the actual underlying container. More...
 
using iterator = ContainerType::iterator
 Iterator class. More...
 
using const_iterator = ContainerType::const_iterator
 Iterator class. More...
 
using KVType = ContainerType::value_type
 Type of value stored in the hash map. More...
 
- Public Types inherited from mxnet::runtime::Object
typedef void(* FDeleter) (Object *self)
 Object deleter. More...
 
using RefCounterType = std::atomic< int32_t >
 

Public Member Functions

 MXNET_DECLARE_FINAL_OBJECT_INFO (MapObj, Object)
 
size_t size () const
 Number of elements in the MapObj. More...
 
size_t count (const key_type &key) const
 Count the number of times a key exists in the hash map. More...
 
const mapped_typeat (const key_type &key) const
 Index value associated with a key, throw exception if the key does not exist. More...
 
mapped_typeat (const key_type &key)
 Index value associated with a key, throw exception if the key does not exist. More...
 
iterator begin ()
 
const_iterator begin () const
 
iterator end ()
 
const_iterator end () const
 
const_iterator find (const key_type &key) const
 Index value associated with a key. More...
 
iterator find (const key_type &key)
 Index value associated with a key. More...
 
void erase (const iterator &position)
 Erase the entry associated with the iterator. More...
 
void erase (const key_type &key)
 Erase the entry associated with the key, do nothing if not exists. More...
 
- Public Member Functions inherited from mxnet::runtime::Object
uint32_t type_index () const
 
std::string GetTypeKey () const
 
size_t GetTypeKeyHash () const
 
template<typename TargetType >
bool IsInstance () const
 
 Object ()
 
 Object (const Object &other)
 
 Object (Object &&other)
 
Objectoperator= (const Object &other)
 
Objectoperator= (Object &&other)
 

Static Public Member Functions

static ObjectPtr< MapObjEmpty ()
 Create an empty container. More...
 
- Static Public Member Functions inherited from mxnet::runtime::Object
static MXNET_DLL std::string TypeIndex2Key (uint32_t tindex)
 Get the type key of the corresponding index from runtime. More...
 
static MXNET_DLL size_t TypeIndex2KeyHash (uint32_t tindex)
 Get the type key hash of the corresponding index from runtime. More...
 
static MXNET_DLL uint32_t TypeKey2Index (const std::string &key)
 Get the type index of the corresponding key from runtime. More...
 
static uint32_t _GetOrAllocRuntimeTypeIndex ()
 
static uint32_t RuntimeTypeIndex ()
 

Static Public Attributes

static constexpr const uint32_t _type_index = runtime::TypeIndex::kMXNetMap
 
static constexpr const char * _type_key = "MXNet.Map"
 
- Static Public Attributes inherited from mxnet::runtime::Object
static constexpr const char * _type_key = "Object"
 
static constexpr bool _type_final = false
 
static constexpr uint32_t _type_child_slots = 0
 
static constexpr bool _type_child_slots_can_overflow = true
 
static constexpr uint32_t _type_index = TypeIndex::kDynamic
 

Static Protected Member Functions

template<typename IterType >
static ObjectPtr< ObjectCreateFromRange (IterType first, IterType last)
 Create the map using contents from the given iterators. More...
 
static void InsertMaybeReHash (const KVType &kv, ObjectPtr< Object > *map)
 InsertMaybeReHash an entry into the given hash map. More...
 
static ObjectPtr< MapObjCopyFrom (MapObj *from)
 Create an empty container with elements copying from another MapObj. More...
 
- Static Protected Member Functions inherited from mxnet::runtime::Object
static MXNET_DLL uint32_t GetOrAllocRuntimeTypeIndex (const std::string &key, uint32_t static_tindex, uint32_t parent_tindex, uint32_t type_child_slots, bool type_child_slots_can_overflow)
 Get the type index using type key. More...
 

Protected Attributes

ContainerType data_
 The real container storing data. More...
 
- Protected Attributes inherited from mxnet::runtime::Object
uint32_t type_index_ {0}
 Type index(tag) that indicates the type of the object. More...
 
RefCounterType ref_counter_ {0}
 The internal reference counter. More...
 
FDeleter deleter_ = nullptr
 deleter of this object to enable customized allocation. If the deleter is nullptr, no deletion will be performed. The creator of the object must always set the deleter field properly. More...
 

Friends

template<typename , typename , typename , typename >
class Map
 

Additional Inherited Members

- Protected Member Functions inherited from mxnet::runtime::Object
void IncRef ()
 developer function, increases reference counter. More...
 
void DecRef ()
 developer function, decrease reference counter. More...
 

Detailed Description

Shared content of all specializations of hash map.

Member Typedef Documentation

◆ const_iterator

using mxnet::runtime::MapObj::const_iterator = ContainerType::const_iterator

Iterator class.

◆ ContainerType

Type of the actual underlying container.

◆ iterator

using mxnet::runtime::MapObj::iterator = ContainerType::iterator

Iterator class.

◆ key_type

Type of the keys in the hash map.

◆ KVType

using mxnet::runtime::MapObj::KVType = ContainerType::value_type

Type of value stored in the hash map.

◆ mapped_type

Type of the values in the hash map.

Member Function Documentation

◆ at() [1/2]

mapped_type& mxnet::runtime::MapObj::at ( const key_type key)
inline

Index value associated with a key, throw exception if the key does not exist.

Parameters
keyThe indexing key
Returns
The mutable reference to the value

◆ at() [2/2]

const mapped_type& mxnet::runtime::MapObj::at ( const key_type key) const
inline

Index value associated with a key, throw exception if the key does not exist.

Parameters
keyThe indexing key
Returns
The const reference to the value

◆ begin() [1/2]

iterator mxnet::runtime::MapObj::begin ( )
inline
Returns
begin iterator

◆ begin() [2/2]

const_iterator mxnet::runtime::MapObj::begin ( ) const
inline
Returns
const begin iterator

◆ CopyFrom()

static ObjectPtr<MapObj> mxnet::runtime::MapObj::CopyFrom ( MapObj from)
inlinestaticprotected

Create an empty container with elements copying from another MapObj.

Parameters
fromThe source container
Returns
The object created

◆ count()

size_t mxnet::runtime::MapObj::count ( const key_type key) const
inline

Count the number of times a key exists in the hash map.

Parameters
keyThe indexing key
Returns
The result, 0 or 1

◆ CreateFromRange()

template<typename IterType >
static ObjectPtr<Object> mxnet::runtime::MapObj::CreateFromRange ( IterType  first,
IterType  last 
)
inlinestaticprotected

Create the map using contents from the given iterators.

Parameters
firstBegin of iterator
lastEnd of iterator
Template Parameters
IterTypeThe type of iterator
Returns
ObjectPtr to the map created

◆ Empty()

static ObjectPtr<MapObj> mxnet::runtime::MapObj::Empty ( )
inlinestatic

Create an empty container.

Returns
The object created

◆ end() [1/2]

iterator mxnet::runtime::MapObj::end ( )
inline
Returns
end iterator

◆ end() [2/2]

const_iterator mxnet::runtime::MapObj::end ( ) const
inline
Returns
end iterator

◆ erase() [1/2]

void mxnet::runtime::MapObj::erase ( const iterator position)
inline

Erase the entry associated with the iterator.

Parameters
positionThe iterator

◆ erase() [2/2]

void mxnet::runtime::MapObj::erase ( const key_type key)
inline

Erase the entry associated with the key, do nothing if not exists.

Parameters
keyThe indexing key

◆ find() [1/2]

iterator mxnet::runtime::MapObj::find ( const key_type key)
inline

Index value associated with a key.

Parameters
keyThe indexing key
Returns
The iterator of the entry associated with the key, end iterator if not exists

◆ find() [2/2]

const_iterator mxnet::runtime::MapObj::find ( const key_type key) const
inline

Index value associated with a key.

Parameters
keyThe indexing key
Returns
The iterator of the entry associated with the key, end iterator if not exists

◆ InsertMaybeReHash()

static void mxnet::runtime::MapObj::InsertMaybeReHash ( const KVType kv,
ObjectPtr< Object > *  map 
)
inlinestaticprotected

InsertMaybeReHash an entry into the given hash map.

Parameters
kvThe entry to be inserted
mapThe pointer to the map, can be changed if re-hashing happens

◆ MXNET_DECLARE_FINAL_OBJECT_INFO()

mxnet::runtime::MapObj::MXNET_DECLARE_FINAL_OBJECT_INFO ( MapObj  ,
Object   
)

◆ size()

size_t mxnet::runtime::MapObj::size ( ) const
inline

Number of elements in the MapObj.

Returns
The result

Friends And Related Function Documentation

◆ Map

template<typename , typename , typename , typename >
friend class Map
friend

Member Data Documentation

◆ _type_index

constexpr const uint32_t mxnet::runtime::MapObj::_type_index = runtime::TypeIndex::kMXNetMap
staticconstexpr

◆ _type_key

constexpr const char* mxnet::runtime::MapObj::_type_key = "MXNet.Map"
staticconstexpr

◆ data_

ContainerType mxnet::runtime::MapObj::data_
protected

The real container storing data.


The documentation for this class was generated from the following file: