tvm
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
vm.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_VM_VM_H_
25 #define TVM_RUNTIME_VM_VM_H_
26 
29 #include <tvm/runtime/module.h>
30 #include <tvm/runtime/object.h>
32 #include <tvm/runtime/registry.h>
35 
36 #include <memory>
37 #include <string>
38 #include <unordered_map>
39 #include <utility>
40 #include <vector>
41 
42 namespace tvm {
43 namespace runtime {
44 
45 using memory::Allocator;
47 using memory::MemoryManager;
48 using memory::Storage;
49 using memory::StorageObj;
50 
51 namespace vm {
52 
56 class VMClosureObj : public ClosureObj {
57  public:
62  size_t func_index;
64  std::vector<ObjectRef> free_vars;
65 
66  static constexpr const uint32_t _type_index = TypeIndex::kDynamic;
67  static constexpr const char* _type_key = "vm.Closure";
69 };
70 
72 class VMClosure : public Closure {
73  public:
74  VMClosure(size_t func_index, std::vector<ObjectRef> free_vars);
76 };
77 
84 struct VMFunction {
86  std::string name;
88  std::vector<std::string> params;
90  std::vector<Instruction> instructions;
94  std::vector<Index> param_device_indexes;
95 
96  VMFunction(std::string name, std::vector<std::string> params,
97  std::vector<Instruction> instructions, Index register_file_size,
98  std::vector<Index> param_device_indexes)
99  : name(std::move(name)),
100  params(std::move(params)),
101  instructions(std::move(instructions)),
104  ICHECK_EQ(this->params.size(), this->param_device_indexes.size());
105  }
106 
107  VMFunction() = default;
108 
109  friend std::ostream& operator<<(std::ostream& os, const VMFunction&);
110 };
111 
119 struct VMFrame {
128 
130  std::vector<ObjectRef> register_file;
131 
134 
135  VMFrame(Index pc, Index func_index, Index args, const Instruction* code, Index register_file_size)
136  : pc(pc),
138  args(args),
139  code(code),
140  register_file(register_file_size),
142 };
143 
155 class TVM_DLL VirtualMachine : public runtime::ModuleNode {
156  public:
174  virtual PackedFunc GetFunction(const String& name, const ObjectPtr<Object>& sptr_to_self);
175 
176  virtual ~VirtualMachine() {}
177 
178  const char* type_key() const final { return "VirtualMachine"; }
179 
180  VirtualMachine() : frames_(), func_index_(0), code_(nullptr), pc_(0), exec_(nullptr) {}
181 
186  virtual void LoadExecutable(const ObjectPtr<Executable>& exec);
187 
189  int GetPropertyMask() const final { return ModulePropertyMask::kRunnable; }
190 
191  protected:
193  void PushFrame(Index arg_count, Index ret_pc, const VMFunction& vm_func);
194 
200 
206  inline void WriteRegister(RegName reg, const ObjectRef& obj);
207 
214 
220  int64_t LoadScalarInt(RegName reg) const;
221 
228  ObjectRef Invoke(const VMFunction& func, const std::vector<ObjectRef>& args);
229 
230  // TODO(@jroesch): I really would like this to be a global variable.
237  ObjectRef Invoke(const std::string& name, const std::vector<ObjectRef>& args);
238 
246  ObjectRef Invoke(const VMFunction& func, const std::vector<ObjectRef>& input_args,
247  const std::vector<ObjectRef>& output_args);
248 
260  virtual void InvokePacked(Index packed_index, const PackedFunc& func, Index arg_count,
261  Index output_size, const std::vector<ObjectRef>& args);
262 
268  void Init(const std::vector<Device>& physical_devices,
269  const std::vector<AllocatorType>& alloc_types);
270 
272  void RunLoop(const std::vector<Index>& output_tensor_reg_indices = {});
273 
275  Device GetDevice(Index device_index) const;
276  Allocator* GetAllocator(Index device_index) const;
277 
283  void InvokeGlobal(const VMFunction& func, const std::vector<ObjectRef>& args);
284 
293  void SetInput(std::string name, TVMArgs args, int offset);
294 
302  void SetOneInput(std::string name, const TVMArgValue& tag, const TVMArgValue& tensor);
303 
313  void SetOutputs(std::string name, TVMArgs args);
314 
320  void PrintInfoAndSetInputArgs(const VMFunction& func, const std::vector<ObjectRef>& args);
321 
327  void SetOutputTensorsToRegister(const std::string& func_name,
328  const std::vector<ObjectRef>& outputs);
329 
339  virtual void OpStartHook(Instruction instr);
340 
344  virtual void OpStopHook();
345 
346  private:
353  int64_t GetInputIndexFromVMFunction(const std::string& func_name,
354  const std::string& input_name) const;
355 
362  int64_t GetInputIndexFromName(const std::vector<std::string>& params,
363  const std::string& input_name) const;
364 
370  const VMFunction& CheckAndGetVMFunction(const std::string& func_name) const;
371 
377  void CreateInputsOrCheckSize(const std::string& func_name, size_t size);
378 
384  void SetInputTensorWithIndex(std::vector<ObjectRef>& tensors, // NOLINT(*)
385  const TVMArgValue& tensor, int index, Device dev);
386 
393  ObjectRef TensorFromTVMArgValueToObjectRef(const TVMArgValue& tensor) const;
394 
399  Index GetResultRegisterIndex() const;
400 
405  void CalculatePreResultOpIndex(Index res_index);
406 
413  std::vector<Index> GetOutputTensorRegIndices();
414 
419  void WriteAllocatedTensor(const Instruction& instr);
420 
428  void WriteAllocatedTensorFromOutside(const Instruction& instr);
429 
430  bool FindIndex(const std::vector<Index>& indices, Index val) const;
431 
432  protected:
434  std::vector<PackedFunc> packed_funcs_;
436  std::vector<VMFrame> frames_;
448  std::unordered_map<std::string, std::vector<ObjectRef>> inputs_;
450  std::unordered_map<std::string, bool> set_outputs_enabled_;
452  Index preresult_op_index_ = -1;
454  std::unordered_map<std::string, std::vector<Index>> output_tensor_reg_indices_;
456  std::unordered_map<std::string, std::vector<ObjectRef>> outputs_;
462  std::vector<Device> devices_;
464  std::vector<Allocator*> allocators_;
469  std::vector<ObjectRef> const_pool_;
470 };
471 
472 } // namespace vm
473 } // namespace runtime
474 } // namespace tvm
475 
476 #endif // TVM_RUNTIME_VM_VM_H_
The bytecode for Relay virtual machine.
An object representing a closure. This object is used by both the Relay VM and interpreter.
Definition: closure.h:36
reference to closure.
Definition: closure.h:44
Base container of module.
Definition: module.h:142
A custom smart pointer for Object.
Definition: object.h:360
Base class of all object reference.
Definition: object.h:517
Packed function is a type-erased function. The arguments are passed by packed format.
Definition: packed_func.h:139
Reference to string objects.
Definition: string.h:98
A single argument value to PackedFunc. Containing both type_code and TVMValue.
Definition: packed_func.h:649
Arguments into TVM functions.
Definition: packed_func.h:392
Definition: memory_manager.h:58
An object representing a vm closure.
Definition: vm.h:56
static constexpr const char * _type_key
Definition: vm.h:67
std::vector< ObjectRef > free_vars
The free variables of the closure.
Definition: vm.h:64
static constexpr const uint32_t _type_index
Definition: vm.h:66
TVM_DECLARE_FINAL_OBJECT_INFO(VMClosureObj, ClosureObj)
size_t func_index
The index into the function list. The function could be any function object that is compatible to the...
Definition: vm.h:62
reference to closure.
Definition: vm.h:72
VMClosure(size_t func_index, std::vector< ObjectRef > free_vars)
TVM_DEFINE_OBJECT_REF_METHODS(VMClosure, Closure, VMClosureObj)
The virtual machine.
Definition: vm.h:155
const char * type_key() const final
Definition: vm.h:178
void SetInput(std::string name, TVMArgs args, int offset)
Set inputs to a function.
void PushFrame(Index arg_count, Index ret_pc, const VMFunction &vm_func)
Push a call frame on to the call stack.
void RunLoop(const std::vector< Index > &output_tensor_reg_indices={})
Run VM dispatch loop.
std::vector< Allocator * > allocators_
The cached memory allocators, one per device.
Definition: vm.h:464
ObjectRef Invoke(const std::string &name, const std::vector< ObjectRef > &args)
Invoke a VM function by name.
int64_t LoadScalarInt(RegName reg) const
Read a VM register and cast it to int32_t.
void Init(const std::vector< Device > &physical_devices, const std::vector< AllocatorType > &alloc_types)
Initialize the virtual machine for a set of (physical) devices.
void SetOutputs(std::string name, TVMArgs args)
Set pre-allocated output tensors to a function. It is native implementation of 'set_outputs' python m...
void InvokeGlobal(const VMFunction &func, const std::vector< ObjectRef > &args)
Invoke a global setting up the VM state to execute.
ObjectRef ReadRegister(RegName reg) const
Read a VM register.
std::unordered_map< std::string, std::vector< ObjectRef > > outputs_
The function name to pre-allocated outputs mapping.
Definition: vm.h:456
std::vector< VMFrame > frames_
The current stack of call frames.
Definition: vm.h:436
virtual void OpStartHook(Instruction instr)
Internal hook for profiling the start of an op.
virtual void OpStopHook()
Internal hook for profiling the end of an op.
std::vector< ObjectRef > const_pool_
The constant pool for runtime. It caches the device dependent object to avoid rellocation of constant...
Definition: vm.h:469
Allocator * GetAllocator(Index device_index) const
virtual void LoadExecutable(const ObjectPtr< Executable > &exec)
load the executable for the virtual machine.
Index pc_
The virtual machine PC.
Definition: vm.h:442
Index PopFrame()
Pop a frame off the call stack.
std::vector< Device > devices_
The "physical" devices the VM can execute primitives on. All "device indexes" are w....
Definition: vm.h:462
ObjectPtr< Executable > exec_
The executable the VM will operate on.
Definition: vm.h:446
virtual ~VirtualMachine()
Definition: vm.h:176
Device GetDevice(Index device_index) const
Get device from the device list based on a given device index.
void WriteRegister(RegName reg, const ObjectRef &obj)
Write to a VM register.
std::unordered_map< std::string, bool > set_outputs_enabled_
The function name to flag enabling scenario with set outputs.
Definition: vm.h:450
ObjectRef Invoke(const VMFunction &func, const std::vector< ObjectRef > &input_args, const std::vector< ObjectRef > &output_args)
Invoke a VM function.
VirtualMachine()
Definition: vm.h:180
std::unordered_map< std::string, std::vector< ObjectRef > > inputs_
The function name to inputs mapping.
Definition: vm.h:448
virtual void InvokePacked(Index packed_index, const PackedFunc &func, Index arg_count, Index output_size, const std::vector< ObjectRef > &args)
Invoke a PackedFunction.
void SetOutputTensorsToRegister(const std::string &func_name, const std::vector< ObjectRef > &outputs)
Set pre-allocated outputs to register for specified function.
ObjectRef Invoke(const VMFunction &func, const std::vector< ObjectRef > &args)
Invoke a VM function.
std::unordered_map< std::string, std::vector< Index > > output_tensor_reg_indices_
The function name to indices of output tensors in register file.
Definition: vm.h:454
const Instruction * code_
The current pointer to the code section.
Definition: vm.h:440
void SetOneInput(std::string name, const TVMArgValue &tag, const TVMArgValue &tensor)
Set one input tensor with index or name to a function.
void PrintInfoAndSetInputArgs(const VMFunction &func, const std::vector< ObjectRef > &args)
Preparation part of Invoke method before RunLoop.
int GetPropertyMask() const final
Get the property of the runtime module .
Definition: vm.h:189
virtual PackedFunc GetFunction(const String &name, const ObjectPtr< Object > &sptr_to_self)
Get a PackedFunc from module.
std::vector< PackedFunc > packed_funcs_
The virtual machine's packed function table.
Definition: vm.h:434
Index func_index_
The fuction table index of the current function.
Definition: vm.h:438
ObjectRef return_register_
The special return register.
Definition: vm.h:444
Runtime Closure container types.
The Relay virtual machine executable.
Abstract device memory management API.
AllocatorType
Definition: memory_manager.h:42
int64_t Index
An alias for the integer type used ubiquitously in the VM.
Definition: bytecode.h:43
int64_t RegName
A register name.
Definition: bytecode.h:38
@ kRunnable
kRunnable we can run the module directly. LLVM/CUDA/JSON runtime, executors (e.g, virtual machine) ru...
Definition: module.h:62
runtime implementation for LibTorch/TorchScript.
Definition: analyzer.h:36
DLDevice Device
Definition: ndarray.h:43
A managed object in the TVM runtime.
Type-erased function used across TVM API.
This file defines the TVM global function registry.
Runtime container of the functions generated by TVM, This is used to support dynamically link,...
@ kDynamic
Type index is allocated during runtime.
Definition: object.h:82
A single virtual machine instruction.
Definition: bytecode.h:83
A representation of a stack frame.
Definition: vm.h:119
Index args
The number of arguments.
Definition: vm.h:125
RegName caller_return_register
Register in caller's frame to put return value.
Definition: vm.h:133
std::vector< ObjectRef > register_file
Statically allocated space for objects.
Definition: vm.h:130
const Instruction * code
A pointer into the caller function's instructions.
Definition: vm.h:127
VMFrame(Index pc, Index func_index, Index args, const Instruction *code, Index register_file_size)
Definition: vm.h:135
Index func_index
The index into the function table, points to the caller.
Definition: vm.h:123
Index pc
The return program counter.
Definition: vm.h:121
A representation of a Relay function in the VM.
Definition: vm.h:84
std::vector< Instruction > instructions
The instructions representing the function.
Definition: vm.h:90
friend std::ostream & operator<<(std::ostream &os, const VMFunction &)
Index register_file_size
The size of the frame for this function.
Definition: vm.h:92
std::vector< std::string > params
The function parameter names.
Definition: vm.h:88
std::string name
The function's name.
Definition: vm.h:86
VMFunction(std::string name, std::vector< std::string > params, std::vector< Instruction > instructions, Index register_file_size, std::vector< Index > param_device_indexes)
Definition: vm.h:96
std::vector< Index > param_device_indexes
The indexes for the device holding each function parameter.
Definition: vm.h:94