Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TanhGrad (0.24 sec)

  1. tensorflow/cc/gradients/math_grad.cc

      // evaluated.
      Scope grad_scope = scope.WithControlDependencies(grad);
      auto y = ConjugateHelper(grad_scope, op.output(0));
      grad_outputs->push_back(internal::TanhGrad(grad_scope, y, grad));
      return grad_scope.status();
    }
    REGISTER_GRADIENT_OP("Tanh", TanhGrad);
    
    Status AsinhGrad(const Scope& scope, const Operation& op,
                     const std::vector<Output>& grad_inputs,
    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/mlir/tensorflow/tests/lower_tf.mlir

    func.func @tanhgrad_complex(%y : tensor<*xcomplex<f32>>, %dy: tensor<*xcomplex<f32>>) -> tensor<*xcomplex<f32>> {
      // CHECK-NOT: tf.TanhGrad
      %0 = "tf.TanhGrad"(%y, %dy) : (tensor<*xcomplex<f32>>, tensor<*xcomplex<f32>>) -> tensor<*xcomplex<f32>>
    
      func.return %0 : tensor<*xcomplex<f32>>
    }
    
    // CHECK-LABEL: func @ZerosLike_unranked
    func.func @ZerosLike_unranked(%arg0: tensor<*xi32>) -> tensor<*xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  3. 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