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

Function _get_defun_inputs_from_args

tensorflow/python/framework/func_graph.py:1059–1062  ·  view source on GitHub ↗

Maps Python function positional args to graph-construction inputs.

(args, names, flat_shapes=None)

Source from the content-addressed store, hash-verified

1057
1058
1059def _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
1065def _get_defun_inputs(args, names, structure, flat_shapes=None):

Callers 1

func_graph_from_py_funcFunction · 0.85

Calls 1

_get_defun_inputsFunction · 0.85

Tested by

no test coverage detected