(cls, *args, **kwargs)
| 331 | |
| 332 | @classmethod |
| 333 | def make(cls, *args, **kwargs): |
| 334 | assert active_module_tracer() is not None |
| 335 | current_graph = active_module_tracer().current_scope() |
| 336 | expr = cls(*args, **kwargs) |
| 337 | out_node = expr.outputs[0] |
| 338 | current_graph._namespace.auto_naming_for_outputs(expr) |
| 339 | current_graph._add_input(out_node) |
| 340 | return expr.outputs[0] |
| 341 | |
| 342 | def __repr__(self): |
| 343 | return "%{}:\t{} = Input()".format(self._id, self.outputs[0]) |
no test coverage detected