(op, grad)
| 45 | |
| 46 | @tf.RegisterGradient('MPScatterAdd') |
| 47 | def _ScatterAddGrad(op, grad): |
| 48 | indices = op.inputs[1] |
| 49 | return [gather(grad, indices), None, None] |
| 50 | |
| 51 | |
| 52 | @tf.RegisterGradient('MPScatterMax') |
nothing calls this directly
no outgoing calls
no test coverage detected