Create and return a new TF_Input for input_idx'th input of this op.
(self, input_idx)
| 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. |
no outgoing calls
no test coverage detected