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

Method _tf_input

tensorflow/python/framework/ops.py:1994–1999  ·  view source on GitHub ↗

Create and return a new TF_Input for input_idx'th input of this op.

(self, input_idx)

Source from the content-addressed store, hash-verified

1992 return tf_output
1993
1994 def _tf_input(self, input_idx):
1995 """Create and return a new TF_Input for input_idx'th input of this op."""
1996 tf_input = c_api.TF_Input()
1997 tf_input.oper = self._c_op
1998 tf_input.index = input_idx
1999 return tf_input
2000
2001 def _set_device(self, device): # pylint: disable=redefined-outer-name
2002 """Set the device of this operation.

Callers 2

_update_inputMethod · 0.95
_input_typesMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected