| 96 | |
| 97 | @dataclass |
| 98 | class TensorMeta: |
| 99 | dtype: ScalarType |
| 100 | sizes: List[SymInt] |
| 101 | requires_grad: bool |
| 102 | device: Device |
| 103 | strides: List[SymInt] |
| 104 | storage_offset: SymInt |
| 105 | layout: Layout |
| 106 | |
| 107 | |
| 108 | # In most cases we will use the "as_name" field to store arguments which are |
no outgoing calls
no test coverage detected