(inputs)
| 854 | |
| 855 | |
| 856 | def _AccumulatorShape(inputs): |
| 857 | shape = tensor_shape.unknown_shape() |
| 858 | for i in inputs: |
| 859 | if isinstance(i, ops.Tensor): |
| 860 | shape = shape.merge_with(i.get_shape()) |
| 861 | return shape |
| 862 | |
| 863 | |
| 864 | def _LogOpGradients(op, out_grads, in_grads): |
no test coverage detected