(op, grad)
| 224 | |
| 225 | @ops.RegisterGradient("ConcatV2") |
| 226 | def _ConcatGradV2(op, grad): |
| 227 | return _ConcatGradHelper( |
| 228 | op, grad, start_value_index=0, end_value_index=-1, dim_index=-1) |
| 229 | |
| 230 | |
| 231 | ops.NotDifferentiable("ConcatOffset") |
nothing calls this directly
no test coverage detected