tvm
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
memory_manager.h
Go to the documentation of this file.
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements. See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership. The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied. See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  */
19 
24 #ifndef TVM_RUNTIME_MEMORY_MEMORY_MANAGER_H_
25 #define TVM_RUNTIME_MEMORY_MEMORY_MANAGER_H_
26 
28 #include <tvm/runtime/ndarray.h>
29 #include <tvm/runtime/object.h>
30 
31 #include <functional>
32 #include <memory>
33 #include <mutex>
34 #include <string>
35 #include <unordered_map>
36 #include <vector>
37 
38 namespace tvm {
39 namespace runtime {
40 namespace memory {
41 
43  kNaive = 1,
45 };
46 
47 struct Buffer {
49  void* data{nullptr};
51  size_t size{0};
56 };
57 
58 class Allocator {
59  public:
60  explicit Allocator(AllocatorType type) : type_(type) {}
61  virtual ~Allocator() = default;
69  NDArray Empty(ShapeTuple shape, DLDataType dtype, Device dev,
70  Optional<String> mem_scope = NullOpt);
72  inline AllocatorType type() const { return type_; }
79  virtual Buffer Alloc(size_t nbytes, size_t alignment, DLDataType type_hint) = 0;
86  virtual Buffer Alloc(ShapeTuple shape, DLDataType type_hint,
87  const std::string& mem_scope = "") = 0;
91  virtual void Free(const Buffer& buffer) = 0;
93  virtual void Clear();
97  virtual size_t UsedMemory() const = 0;
98 
99  protected:
100  virtual Buffer Alloc(Device dev, ShapeTuple shape, DLDataType type_hint,
101  const std::string& mem_scope);
102 
103  private:
104  AllocatorType type_;
105 };
106 
108  public:
125  static void Clear();
126 
127  private:
128  MemoryManager() {}
129 
130  protected:
131  std::mutex mu_;
132  std::unordered_map<Device, std::unordered_map<AllocatorType, std::unique_ptr<Allocator>>>
134 };
135 
137 class StorageObj : public Object {
138  public:
141 
143  NDArray AllocNDArray(size_t offset, ShapeTuple shape, DLDataType dtype);
144 
146  static void Deleter(Object* ptr);
147 
150  alloc->Free(buffer);
151  }
152 
153  static constexpr const uint32_t _type_index = TypeIndex::kDynamic;
154  static constexpr const char* _type_key = "vm.Storage";
156 };
157 
159 class Storage : public ObjectRef {
160  public:
161  explicit Storage(Buffer buffer);
162 
164 };
165 
166 } // namespace memory
167 } // namespace runtime
168 } // namespace tvm
169 
170 #endif // TVM_RUNTIME_MEMORY_MEMORY_MANAGER_H_
Managed NDArray. The array is backed by reference counted blocks.
Definition: ndarray.h:51
Base class of all object reference.
Definition: object.h:517
base class of all object containers.
Definition: object.h:169
Optional container that to represent to a Nullable variant of T.
Definition: optional.h:51
Reference to shape tuple objects.
Definition: shape_tuple.h:81
Definition: memory_manager.h:58
NDArray Empty(ShapeTuple shape, DLDataType dtype, Device dev, Optional< String > mem_scope=NullOpt)
Allocate an empty NDArray using from the allocator.
virtual void Free(const Buffer &buffer)=0
Free a buffer allocated by the allocator.
virtual Buffer Alloc(size_t nbytes, size_t alignment, DLDataType type_hint)=0
Allocate a buffer given a size, alignment and type.
virtual size_t UsedMemory() const =0
The amount of memory currently allocated.
AllocatorType type() const
Return the allocator type.
Definition: memory_manager.h:72
Allocator(AllocatorType type)
Definition: memory_manager.h:60
virtual Buffer Alloc(ShapeTuple shape, DLDataType type_hint, const std::string &mem_scope="")=0
Allocate a buffer given a shape and type.
virtual void Clear()
Clear the allocated memory.
virtual Buffer Alloc(Device dev, ShapeTuple shape, DLDataType type_hint, const std::string &mem_scope)
Definition: memory_manager.h:107
static void Clear()
Clear the allocators.
static Allocator * GetOrCreateAllocator(Device dev, AllocatorType type)
Get or create an allocator given the context and allocator type.
std::mutex mu_
Definition: memory_manager.h:131
static Allocator * GetAllocator(Device dev, AllocatorType type)
Get an allocator given the context.
static MemoryManager * Global()
std::unordered_map< Device, std::unordered_map< AllocatorType, std::unique_ptr< Allocator > > > allocators_
Definition: memory_manager.h:133
An object representing a storage allocation.
Definition: memory_manager.h:137
NDArray AllocNDArray(size_t offset, ShapeTuple shape, DLDataType dtype)
Allocate an NDArray from a given piece of storage.
Buffer buffer
The index into the VM function table.
Definition: memory_manager.h:140
~StorageObj()
Definition: memory_manager.h:148
static constexpr const char * _type_key
Definition: memory_manager.h:154
TVM_DECLARE_FINAL_OBJECT_INFO(StorageObj, Object)
static constexpr const uint32_t _type_index
Definition: memory_manager.h:153
static void Deleter(Object *ptr)
The deleter for an NDArray when allocated from underlying storage.
reference to storage.
Definition: memory_manager.h:159
TVM_DEFINE_MUTABLE_OBJECT_REF_METHODS(Storage, ObjectRef, StorageObj)
AllocatorType
Definition: memory_manager.h:42
@ kNaive
Definition: memory_manager.h:43
@ kPooled
Definition: memory_manager.h:44
Tensor shape(const Tensor &src, DataType dtype, const std::string name="T_shape", const std::string tag=kInjective)
Get the shape of input tensor.
Definition: transform.h:1766
runtime implementation for LibTorch/TorchScript.
Definition: analyzer.h:36
DLDevice Device
Definition: ndarray.h:43
constexpr runtime::NullOptType NullOpt
Definition: optional.h:169
A device-independent managed NDArray abstraction.
A managed object in the TVM runtime.
@ kDynamic
Type index is allocated during runtime.
Definition: object.h:82
Definition: memory_manager.h:47
Device device
The context of the allocated buffers.
Definition: memory_manager.h:53
AllocatorType alloc_type
The allocator that created this buffer.
Definition: memory_manager.h:55
void * data
The pointer to the allocated block of memory.
Definition: memory_manager.h:49
size_t size
The size of the block.
Definition: memory_manager.h:51