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

Function LRNGradHelper

tensorflow/cc/gradients/nn_grad.cc:341–347  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

339REGISTER_GRADIENT_OP("AvgPool3D", AvgPool3DGradHelper);
340
341Status LRNGradHelper(const Scope& scope, const Operation& op,
342 const std::vector<Output>& grad_inputs,
343 std::vector<Output>* grad_outputs) {
344 auto dx = internal::LRNGrad(scope, grad_inputs[0], op.input(0), op.output(0));
345 grad_outputs->push_back(dx);
346 return scope.status();
347}
348REGISTER_GRADIENT_OP("LRN", LRNGradHelper);
349
350Status SoftplusGradHelper(const Scope& scope, const Operation& op,

Callers

nothing calls this directly

Calls 5

outputMethod · 0.65
LRNGradFunction · 0.50
inputMethod · 0.45
push_backMethod · 0.45
statusMethod · 0.45

Tested by

no test coverage detected