| 549 | } |
| 550 | |
| 551 | Status ConcatV2Grad(const Scope& scope, const Operation& op, |
| 552 | const std::vector<Output>& grad_inputs, |
| 553 | std::vector<Output>* grad_outputs) { |
| 554 | return ConcatGradHelper(scope, op, grad_inputs, grad_outputs, |
| 555 | /*start_value_index=*/0, |
| 556 | /*end_value_index=*/op.num_inputs() - 1, |
| 557 | /*dim+index=*/op.num_inputs() - 1); |
| 558 | } |
| 559 | |
| 560 | REGISTER_GRADIENT_OP("ConcatV2", ConcatV2Grad); |
| 561 |
nothing calls this directly
no test coverage detected