StructInfo of a Tuple value. Parameters ---------- fields: List[StructInfo] The struct info of the fields.
| 189 | |
| 190 | @tvm_ffi.register_object("relax.TupleStructInfo") |
| 191 | class TupleStructInfo(StructInfo): |
| 192 | """StructInfo of a Tuple value. |
| 193 | |
| 194 | Parameters |
| 195 | ---------- |
| 196 | fields: List[StructInfo] |
| 197 | The struct info of the fields. |
| 198 | """ |
| 199 | |
| 200 | fields: list[StructInfo] |
| 201 | span: Span |
| 202 | |
| 203 | def __init__(self, fields: list[StructInfo], span: Span = None) -> None: |
| 204 | self.__init_handle_by_constructor__(_ffi_api.TupleStructInfo, fields, span) # type: ignore |
| 205 | |
| 206 | |
| 207 | @tvm_ffi.register_object("relax.FuncStructInfo") |
no outgoing calls
no test coverage detected
searching dependent graphs…