tvm
Classes | Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Static Protected Member Functions | Protected Attributes | Friends | List of all members
tvm::runtime::MapNode Class Reference

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

#include <map.h>

Inheritance diagram for tvm::runtime::MapNode:
Collaboration diagram for tvm::runtime::MapNode:

Classes

class  iterator
 

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 KVType = std::pair< ObjectRef, ObjectRef >
 Type of value stored in the hash map. More...
 
- Public Types inherited from tvm::runtime::Object
typedef void(* FDeleter) (Object *self)
 Object deleter. More...
 
using RefCounterType = std::atomic< int32_t >
 

Public Member Functions

 TVM_DECLARE_FINAL_OBJECT_INFO (MapNode, Object)
 
size_t size () const
 Number of elements in the SmallMapNode. 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 end () const
 
iterator find (const key_type &key) const
 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 tvm::runtime::Object
uint32_t type_index () const
 
std::string GetTypeKey () const
 
size_t GetTypeKeyHash () const
 
template<typename TargetType >
bool IsInstance () const
 
bool unique () const
 
 Object ()
 
 Object (const Object &other)
 
 Object (Object &&other)
 
Objectoperator= (const Object &other)
 
Objectoperator= (Object &&other)
 

Static Public Member Functions

static ObjectPtr< MapNodeEmpty ()
 Create an empty container. More...
 
- Static Public Member Functions inherited from tvm::runtime::Object
static std::string TypeIndex2Key (uint32_t tindex)
 Get the type key of the corresponding index from runtime. More...
 
static size_t TypeIndex2KeyHash (uint32_t tindex)
 Get the type key hash of the corresponding index from runtime. More...
 
static 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::kRuntimeMap
 
static constexpr const char * _type_key = "Map"
 
- Static Public Attributes inherited from tvm::runtime::Object
static constexpr const char * _type_key = "runtime.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 bool _type_has_method_visit_attrs = true
 
static constexpr bool _type_has_method_sequal_reduce = false
 
static constexpr bool _type_has_method_shash_reduce = false
 
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< MapNodeCopyFrom (MapNode *from)
 Create an empty container with elements copying from another SmallMapNode. More...
 
- Static Protected Member Functions inherited from tvm::runtime::Object
static 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

uint64_t slots_
 number of slots minus 1 More...
 
uint64_t size_
 number of entries in the container More...
 
- Protected Attributes inherited from tvm::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 tvm::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

◆ key_type

Type of the keys in the hash map.

◆ KVType

Type of value stored in the hash map.

◆ mapped_type

Type of the values in the hash map.

Member Function Documentation

◆ at() [1/2]

MapNode::mapped_type & tvm::runtime::MapNode::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 MapNode::mapped_type & tvm::runtime::MapNode::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()

MapNode::iterator tvm::runtime::MapNode::begin ( ) const
inline
Returns
begin iterator

◆ CopyFrom()

ObjectPtr< MapNode > tvm::runtime::MapNode::CopyFrom ( MapNode from)
inlinestaticprotected

Create an empty container with elements copying from another SmallMapNode.

Parameters
fromThe source container
Returns
The object created

◆ count()

size_t tvm::runtime::MapNode::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 >
ObjectPtr< Object > tvm::runtime::MapNode::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()

ObjectPtr< MapNode > tvm::runtime::MapNode::Empty ( )
inlinestatic

Create an empty container.

Returns
The object created

◆ end()

MapNode::iterator tvm::runtime::MapNode::end ( ) const
inline
Returns
end iterator

◆ erase() [1/2]

void tvm::runtime::MapNode::erase ( const iterator position)
inline

Erase the entry associated with the iterator.

Parameters
positionThe iterator

◆ erase() [2/2]

void tvm::runtime::MapNode::erase ( const key_type key)
inline

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

Parameters
keyThe indexing key

◆ find()

MapNode::iterator tvm::runtime::MapNode::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()

void tvm::runtime::MapNode::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

◆ size()

size_t tvm::runtime::MapNode::size ( ) const
inline

Number of elements in the SmallMapNode.

Returns
The result

◆ TVM_DECLARE_FINAL_OBJECT_INFO()

tvm::runtime::MapNode::TVM_DECLARE_FINAL_OBJECT_INFO ( MapNode  ,
Object   
)

Friends And Related Function Documentation

◆ Map

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

Member Data Documentation

◆ _type_index

constexpr const uint32_t tvm::runtime::MapNode::_type_index = runtime::TypeIndex::kRuntimeMap
staticconstexpr

◆ _type_key

constexpr const char* tvm::runtime::MapNode::_type_key = "Map"
staticconstexpr

◆ size_

uint64_t tvm::runtime::MapNode::size_
protected

number of entries in the container

◆ slots_

uint64_t tvm::runtime::MapNode::slots_
protected

number of slots minus 1


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