MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / SplitGrad

Function SplitGrad

tensorflow/cc/gradients/array_grad.cc:114–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

112REGISTER_GRADIENT_OP("QuantizeAndDequantizeV3", QuantizeAndDequantizeV3Grad);
113
114Status SplitGrad(const Scope& scope, const Operation& op,
115 const std::vector<Output>& grad_inputs,
116 std::vector<Output>* grad_outputs) {
117 grad_outputs->push_back(NoGradient());
118 grad_outputs->push_back(Concat(scope, grad_inputs, op.input(0)));
119 return scope.status();
120}
121REGISTER_GRADIENT_OP("Split", SplitGrad);
122
123Status SplitVGrad(const Scope& scope, const Operation& op,

Callers

nothing calls this directly

Calls 5

NoGradientFunction · 0.85
ConcatFunction · 0.50
push_backMethod · 0.45
inputMethod · 0.45
statusMethod · 0.45

Tested by

no test coverage detected