| 101 | REGISTER_GRADIENT_OP("QuantizeAndDequantizeV2", QuantizeAndDequantizeV2Grad); |
| 102 | |
| 103 | Status QuantizeAndDequantizeV3Grad(const Scope& scope, const Operation& op, |
| 104 | const std::vector<Output>& grad_inputs, |
| 105 | std::vector<Output>* grad_outputs) { |
| 106 | grad_outputs->push_back(Identity(scope, grad_inputs[0])); |
| 107 | grad_outputs->push_back(NoGradient()); |
| 108 | grad_outputs->push_back(NoGradient()); |
| 109 | grad_outputs->push_back(NoGradient()); |
| 110 | return scope.status(); |
| 111 | } |
| 112 | REGISTER_GRADIENT_OP("QuantizeAndDequantizeV3", QuantizeAndDequantizeV3Grad); |
| 113 | |
| 114 | Status SplitGrad(const Scope& scope, const Operation& op, |
nothing calls this directly
no test coverage detected