MCPcopy Create free account
hub / github.com/apache/tvm / as_struct_info

Method as_struct_info

python/tvm/relax/script/parser/entry.py:395–397  ·  view source on GitHub ↗
(self, dict_globals: dict[str, Any] | None = None)

Source from the content-addressed store, hash-verified

393 return set().union(*[f.get_symbolic_vars() for f in self.fields])
394
395 def as_struct_info(self, dict_globals: dict[str, Any] | None = None) -> TupleStructInfo:
396 fields = [field.as_struct_info(dict_globals) for field in self.fields]
397 return TupleStructInfo(fields)
398
399
400def Tuple(*fields: list[StructInfoProxy]) -> TupleProxy:

Callers

nothing calls this directly

Calls 2

TupleStructInfoClass · 0.90
as_struct_infoMethod · 0.45

Tested by

no test coverage detected