Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ConjugateHelper (0.18 sec)

  1. tensorflow/cc/gradients/math_grad.cc

    Status PowGrad(const Scope& scope, const Operation& op,
                   const std::vector<Output>& grad_inputs,
                   std::vector<Output>* grad_outputs) {
      auto x = ConjugateHelper(scope, op.input(0));
      auto y = ConjugateHelper(scope, op.input(1));
      auto z = ConjugateHelper(scope, op.output(0));
      auto grad = grad_inputs[0];
      // grad * y * pow(x, y - 1)
      auto one = Cast(scope, Const(scope, 1.0), y.type());
      auto gx_1 =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
Back to top