23 #ifndef TVM_RUNTIME_VM_VM_H_
24 #define TVM_RUNTIME_VM_VM_H_
26 #include <tvm/ffi/extra/module.h>
30 #include <unordered_map>
33 #include "../memory/memory_manager.h"
40 using memory::Allocator;
42 using memory::MemoryManager;
43 using memory::Storage;
44 using memory::StorageObj;
134 const std::vector<AllocatorType>& alloc_types) = 0;
153 ffi::PackedArgs args, ffi::Any* rv) = 0;
182 template <typename T, typename = std::enable_if_t<std::is_base_of<VMExtension, T>::value>>
184 using ContainerType =
typename T::ContainerType;
185 uint32_t key = ContainerType::RuntimeTypeIndex();
187 ffi::Any value = (*it).second;
188 return value.cast<T>();
190 auto [it, _] =
extensions.emplace(key, T::Create());
191 ffi::Any value = (*it).second;
192 return value.cast<T>();
199 static ffi::ObjectPtr<VirtualMachine>
Create();
The bytecode for the virtual machine.
An object representing a vm closure.
Definition: vm.h:61
TVM_FFI_DECLARE_OBJECT_INFO_FINAL("relax.vm.Closure", VMClosureObj, ffi::Object)
ffi::String func_name
The function name. The function could be any function object that is compatible to the VM runtime.
Definition: vm.h:67
ffi::Function impl
The implementation of the Closure.
Definition: vm.h:75
reference to closure.
Definition: vm.h:80
TVM_FFI_DEFINE_OBJECT_REF_METHODS_NULLABLE(VMClosure, ffi::ObjectRef, VMClosureObj)
VMClosure(ffi::String func_name, ffi::Function impl)
static ffi::Function BindLastArgs(ffi::Function func, std::vector< ffi::Any > last_args)
Create another ffi::Function with last arguments already bound to last_args.
Represent a VM extension. A VM extension allows the user to extend the VM with target specific functi...
Definition: vm.h:104
TVM_FFI_DECLARE_OBJECT_INFO("runtime.VMExtension", VMExtensionNode, ffi::Object)
Managed reference to VM extension.
Definition: vm.h:110
TVM_FFI_DEFINE_OBJECT_REF_METHODS_NULLABLE(VMExtension, ffi::ObjectRef, VMExtensionNode)
The virtual machine.
Definition: vm.h:126
~VirtualMachine()
Definition: vm.h:208
static ffi::ObjectPtr< VirtualMachine > Create()
Create a specific instance of VM.
virtual void LoadExecutable(ffi::ObjectPtr< VMExecutable > exec)=0
Load the executable for the virtual machine.
virtual VMClosure GetClosure(const ffi::String &func_name)=0
Get global function in the VM.
static VirtualMachine * GetContextPtr(ffi::AnyView arg)
Helper function for vm closure functions to get the context ptr.
Definition: vm.h:204
virtual void InvokeClosurePacked(const ffi::ObjectRef &closure_or_packedfunc, ffi::PackedArgs args, ffi::Any *rv)=0
Invoke closure or packed function using ffi::Function convention.
virtual void SetInstrument(ffi::Function instrument)=0
Set an instrumentation function.
virtual void Init(const std::vector< Device > &devices, const std::vector< AllocatorType > &alloc_types)=0
Initialize the virtual machine for a set of devices.
std::unordered_map< uint32_t, Any > extensions
The VM extensions. Mapping from the type index of the extension to the extension instance.
Definition: vm.h:219
std::vector< Allocator * > allocators
The memory allocators.
Definition: vm.h:214
T GetOrCreateExtension()
Get or create a VM extension. Once created, the extension will be stored in the VM and held until the...
Definition: vm.h:183
std::vector< Device > devices
Runtime physical device list.
Definition: vm.h:216
AllocatorType
Definition: memory_manager.h:41
VMInstrumentReturnKind
Possible instrument actions.
Definition: vm.h:51
@ kNoOp
Running as normal.
@ kSkipRun
Skip the following run, only valid in before.
An object that builds and maintains block scope and StmtSref mapping for Dependence analysis.
Definition: analyzer.h:37