(self)
| 135 | return "LogicalTensorDesc" |
| 136 | |
| 137 | def children(self): |
| 138 | yield "layout", self.layout |
| 139 | yield "comp_node", self.comp_node |
| 140 | yield "value", print_small_tensor(self.value) |
| 141 | |
| 142 | |
| 143 | class OpDefPrinter: |
nothing calls this directly
no test coverage detected