Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SqrtGrad (0.29 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

      )>;
    
    //===----------------------------------------------------------------------===//
    // Sqrt op patterns.
    //===----------------------------------------------------------------------===//
    
    // SqrtGrad(y, dy) = dy * 0.5 / y
    def LowerSqrtGradOp : Pat<
      (TF_SqrtGradOp $y, $dy),
      (TF_DivOp
        (TF_MulOp $dy, (TF_ConstOp (GetScalarOfFloatType<"0.5"> $dy))),
        $y
      )>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        static bool isCompatibleReturnTypes(TypeRange inferred, TypeRange actual) {
          return ArraysAreCastCompatible(inferred, actual);
        }
      }];
    }
    
    def TF_SqrtGradOp : TF_Op<"SqrtGrad", [Pure, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes the gradient for the sqrt 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