(i)
| 1080 | self._pop_tape() |
| 1081 | |
| 1082 | def loop_fn(i): |
| 1083 | self._push_tape() |
| 1084 | y = array_ops.gather(target, i) |
| 1085 | self._pop_tape() |
| 1086 | return self.gradient(y, flat_sources, |
| 1087 | unconnected_gradients=unconnected_gradients) |
| 1088 | |
| 1089 | try: |
| 1090 | target_size = int(target.shape[0]) |
nothing calls this directly
no test coverage detected