Maps Python function positional args to graph-construction inputs.
(args, names, flat_shapes=None)
| 1057 | |
| 1058 | |
| 1059 | def _get_defun_inputs_from_args(args, names, flat_shapes=None): |
| 1060 | """Maps Python function positional args to graph-construction inputs.""" |
| 1061 | return _get_defun_inputs( |
| 1062 | args, names, structure=args, flat_shapes=flat_shapes) |
| 1063 | |
| 1064 | |
| 1065 | def _get_defun_inputs(args, names, structure, flat_shapes=None): |
no test coverage detected