MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / __str__

Method __str__

tools/low_precision_optimize/simple_graph.py:84–91  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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
94class SimpleGraph:

Callers

nothing calls this directly

Calls 1

formatMethod · 0.45

Tested by

no test coverage detected