(self)
| 82 | ) |
| 83 | |
| 84 | def __str__(self) -> str: |
| 85 | s = "" |
| 86 | s += "name : {}\n".format(self.name) |
| 87 | s += "op : {}\n".format(self.op) |
| 88 | s += "inputs_tensors: {}\n".format(self.inputs_tensors) |
| 89 | s += "ouput_nodes : {}\n".format(self.output_nodes) |
| 90 | s += "tensors : {}\n".format(self.tensors) |
| 91 | return s |
| 92 | |
| 93 | |
| 94 | class SimpleGraph: |