MCPcopy
hub / github.com/apache/tvm / output

Function output

python/tvm/relax/script/builder/ir.py:394–401  ·  view source on GitHub ↗

Expose the dataflow block output variables as global ones. Parameters ---------- vars: Tuple[Var] The output variables of a dataflow block.

(*vars: tuple[Var])

Source from the content-addressed store, hash-verified

392
393
394def output(*vars: tuple[Var]) -> None:
395 """Expose the dataflow block output variables as global ones.
396 Parameters
397 ----------
398 vars: Tuple[Var]
399 The output variables of a dataflow block.
400 """
401 return _ffi_api.DataflowBlockOutput(vars) # type: ignore[attr-defined] # pylint: disable=no-member
402
403
404################################## Ops #################################

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…