Removes any control inputs to this operation.
(self)
| 2101 | c_api.AddControlInput(self._graph._c_graph, self._c_op, op._c_op) # pylint: disable=protected-access |
| 2102 | |
| 2103 | def _remove_all_control_inputs(self): |
| 2104 | """Removes any control inputs to this operation.""" |
| 2105 | c_api.RemoveAllControlInputs(self._graph._c_graph, self._c_op) # pylint: disable=protected-access |
| 2106 | |
| 2107 | def _add_outputs(self, types, shapes): |
| 2108 | """Adds new Tensors to self.outputs. |
no outgoing calls