(op, grad)
| 214 | |
| 215 | @ops.RegisterGradient("Concat") |
| 216 | def _ConcatGrad(op, grad): |
| 217 | return _ConcatGradHelper( |
| 218 | op, |
| 219 | grad, |
| 220 | start_value_index=1, |
| 221 | end_value_index=len(op.inputs), |
| 222 | dim_index=0) |
| 223 | |
| 224 | |
| 225 | @ops.RegisterGradient("ConcatV2") |
nothing calls this directly
no test coverage detected