Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RealDiv (0.1 sec)

  1. tensorflow/cc/gradients/math_grad.cc

      // y = x_1 / x_2
      // dy/dx_1 = 1/x_2
      // dy/dx_2 = -x_1/x_2^2
      auto gx_1 = RealDiv(scope, grad_inputs[0], x_2);
      auto gx_2 = Mul(scope, grad_inputs[0],
                      RealDiv(scope, RealDiv(scope, Neg(scope, x_1), x_2), x_2));
      return BinaryGradCommon(scope, op, grad_outputs, gx_1, gx_2);
    }
    REGISTER_GRADIENT_OP("RealDiv", RealDivGrad);
    
    Status DivNoNanGrad(const Scope& scope, const Operation& op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top