tvm
|
A frame that represents the PrimFunc containing TIR statements. More...
#include <frame.h>
Public Member Functions | |
TVM_FFI_DECLARE_OBJECT_INFO_FINAL ("script.ir_builder.tir.PrimFuncFrame", PrimFuncFrameNode, TIRFrameNode) | |
void | ExitWithScope () final |
The method called when exiting RAII scope. More... | |
![]() | |
TVM_FFI_DECLARE_OBJECT_INFO ("script.ir_builder.tir.TIRFrame", TIRFrameNode, IRBuilderFrameNode) | |
![]() | |
TVM_FFI_DECLARE_OBJECT_INFO ("script.ir_builder.IRBuilderFrame", IRBuilderFrameNode, runtime::Object) | |
virtual | ~IRBuilderFrameNode ()=default |
Default destructor. More... | |
virtual void | EnterWithScope () |
The method called when entering RAII scope. More... | |
void | AddCallback (ffi::TypedFunction< void()> callback) |
Add a callback method invoked when exiting the RAII scope. More... | |
Static Public Member Functions | |
static void | RegisterReflection () |
![]() | |
static void | RegisterReflection () |
![]() | |
static void | RegisterReflection () |
Public Attributes | |
ffi::Optional< ffi::String > | name |
The name of the block. More... | |
ffi::Array< tvm::tir::Var > | args |
Function parameters. More... | |
bool | is_private |
Whether the PrimFunc is annotated as private. More... | |
ffi::Optional< Type > | ret_type |
The return type of the function. More... | |
ffi::Map< tvm::tir::Var, tvm::tir::Buffer > | buffer_map |
Maps some parameters to specific Buffer data structures. More... | |
ffi::Map< ffi::String, Any > | attrs |
Additional attributes storing the meta-data. More... | |
ffi::Map< tvm::tir::Var, tvm::tir::IterVar > | env_threads |
The variable map bound to thread env. More... | |
ffi::Array< tvm::tir::Buffer > | root_alloc_buffers |
The buffer allocated in root block. More... | |
![]() | |
ffi::Array< tvm::tir::Stmt > | stmts |
The Stmt within in this frame. More... | |
![]() | |
std::vector< ffi::TypedFunction< void()> > | callbacks |
A list of callbacks used when exiting the frame. More... | |
Additional Inherited Members | |
![]() | |
static constexpr const bool | _type_mutable = true |
A frame that represents the PrimFunc containing TIR statements.
|
finalvirtual |
The method called when exiting RAII scope.
Reimplemented from tvm::script::ir_builder::IRBuilderFrameNode.
|
inlinestatic |
tvm::script::ir_builder::tir::PrimFuncFrameNode::TVM_FFI_DECLARE_OBJECT_INFO_FINAL | ( | "script.ir_builder.tir.PrimFuncFrame" | , |
PrimFuncFrameNode | , | ||
TIRFrameNode | |||
) |
ffi::Array<tvm::tir::Var> tvm::script::ir_builder::tir::PrimFuncFrameNode::args |
Function parameters.
ffi::Map<ffi::String, Any> tvm::script::ir_builder::tir::PrimFuncFrameNode::attrs |
Additional attributes storing the meta-data.
ffi::Map<tvm::tir::Var, tvm::tir::Buffer> tvm::script::ir_builder::tir::PrimFuncFrameNode::buffer_map |
Maps some parameters to specific Buffer data structures.
ffi::Map<tvm::tir::Var, tvm::tir::IterVar> tvm::script::ir_builder::tir::PrimFuncFrameNode::env_threads |
The variable map bound to thread env.
bool tvm::script::ir_builder::tir::PrimFuncFrameNode::is_private |
Whether the PrimFunc is annotated as private.
ffi::Optional<ffi::String> tvm::script::ir_builder::tir::PrimFuncFrameNode::name |
The name of the block.
ffi::Optional<Type> tvm::script::ir_builder::tir::PrimFuncFrameNode::ret_type |
The return type of the function.
ffi::Array<tvm::tir::Buffer> tvm::script::ir_builder::tir::PrimFuncFrameNode::root_alloc_buffers |
The buffer allocated in root block.