Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions python/tvm/relax/op/vm/vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,13 @@ def alloc_tensor(

@args_converter.auto
def call_tir_dyn(func: Expr, args: Tuple) -> Call:
"""Construct a Call to kill a storage.
"""Construct a Call to call_tir_dyn (invoke the given TIR PrimFunc)
consisting of the input tensors and the shape of the result.

Parameters
----------
func : Expr
The storage to be killed.
An expression evaluating to a TIR PrimFunc.

args : Tuple
The input args, includes a list of tensors, and a ShapeExpr.
Expand Down