Gradient for Max.
(op, grad)
| 222 | |
| 223 | @ops.RegisterGradient("Max") |
| 224 | def _MaxGrad(op, grad): |
| 225 | """Gradient for Max.""" |
| 226 | return _MinOrMaxGrad(op, grad) |
| 227 | |
| 228 | |
| 229 | @ops.RegisterGradient("Min") |
nothing calls this directly
no test coverage detected