Returns `True` if and only if `tensor` is feedable.
(self, tensor)
| 4947 | self._unfeedable_tensors.add(tensor) |
| 4948 | |
| 4949 | def is_feedable(self, tensor): |
| 4950 | """Returns `True` if and only if `tensor` is feedable.""" |
| 4951 | return tensor not in self._unfeedable_tensors |
| 4952 | |
| 4953 | def prevent_fetching(self, op): |
| 4954 | """Marks the given `op` as unfetchable in this graph.""" |
no outgoing calls