Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for TanhGrad (0.3 sec)

  1. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.golden_summary

     DynamicStitch 1
     FloorDiv 1
     MatMul 20
     Maximum 1
     Mul 74
     NoOp 13
     Reshape 86
     RsqrtGrad 1
     Select 36
     SigmoidGrad 24
     Slice 32
     StridedSlice 2
     Sub 1
     Sum 11
     TanhGrad 17
     Tile 2
     ZerosLike 1
    cluster 16 size 22
     Add 2
     BiasAdd 1
     ConcatV2 1
     Const 3
     GreaterEqual 1
     MatMul 1
     Mul 3
     Select 3
     Shape 1
     Sigmoid 3
     Split 1
     Tanh 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

      (TF_SqrtGradOp $y, $dy),
      (TF_DivOp
        (TF_MulOp $dy, (TF_ConstOp (GetScalarOfFloatType<"0.5"> $dy))),
        $y
      )>;
    
    //===----------------------------------------------------------------------===//
    // TanhGrad op patterns.
    //===----------------------------------------------------------------------===//
    
    // grad = dy * (1 - y**2)
    
    def LowerTanhGradOp :
      Pat<(TF_TanhGradOp $y, $dy),
          (TF_MulOp $dy,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        static bool isCompatibleReturnTypes(TypeRange inferred, TypeRange actual) {
          return ArraysAreCastCompatible(inferred, actual);
        }
      }];
    }
    
    def TF_TanhGradOp : TF_Op<"TanhGrad", [Pure, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes the gradient for the tanh of `x` wrt its input.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top