Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Tf_SubOp (0.19 sec)

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

          (TF_MulOp:$alpha
            $lr,
            (TF_DivOp
              (TF_SqrtOp (TF_SubOp $one, $beta2_power)),
              (TF_SubOp $one, $beta1_power)
            )
          ),
          (TF_AddV2Op:$new_m
            (TF_MulOp $beta1, (CreateTFReadVariableOp $src_op, $grad, $m_resource)),
            (TF_MulOp (TF_SubOp $one, $beta1), $grad)
          ),
          (TF_AddV2Op:$new_v
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    def LowerSquaredDifferenceOpOnRealTensors : Pat<
      (TF_SquaredDifferenceOp RealTensor: $lhs, RealTensor:$rhs),
      (TF_SquareOp (TF_SubOp $lhs, $rhs))>;
    
    def LowerSquaredDifferenceOpOneComplexTensors : Pat<
      (TF_SquaredDifferenceOp ComplexTensor: $lhs, ComplexTensor:$rhs),
      (TF_MulOp (TF_SubOp:$diff $lhs, $rhs), (TF_ConjOp $diff))>;
    
    //===----------------------------------------------------------------------===//
    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/compiler/mlir/lite/transforms/prepare_patterns.td

        (TF_SubOp $beta, (TF_MulOp $m, $rsqrt)))>;
    def ConvertBatchNormWithGlobalNormalization_2 : Pat<
      (TF_BatchNormWithGlobalNormalizationOp
        $t, $m, $v, $beta, $gamma, F32Attr:$variance_epsilon, ConstBoolAttrTrue:$scale_after_normalization),
      (TF_AddOp
        (TF_MulOp $t, (TF_MulOp:$mul (TF_RsqrtOp (TF_AddOp $v, (TF_ConstOp $variance_epsilon))), $gamma)),
        (TF_SubOp $beta, (TF_MulOp $m, $mul)))>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.td

                $x,
                (TF_MulOp:$multiplier
                    $scale,
                    (TF_RsqrtOp
                        (TF_AddV2Op $variance,
                                  (TF_ConstOp $epsilon))))),
            (TF_SubOp $offset, (TF_MulOp $mean, $multiplier))),
         // We already guaranteed that the last five results have no use so it does
         // not matter what value we provide here for replacement.
         /*batch_mean=*/(replaceWithValue $x),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:24:59 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

                             [TF_PolygammaOp, CHLO_BroadcastPolygammaOp],
                             [TF_PowOp, CHLO_BroadcastPowOp],
                             [TF_RealDivOp, CHLO_BroadcastDivOp],
                             [TF_SubOp, CHLO_BroadcastSubOp],
                             [TF_ZetaOp, CHLO_BroadcastZetaOp]] in
      def : DirectBinaryPat<fromToBinPair[0], fromToBinPair[1]>;
    
    def LowerRightShiftSigned :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

                             [MHLO_MulOp, CHLO_BroadcastMulOp, TF_MulOp],
                             [MHLO_PowOp, CHLO_BroadcastPowOp, TF_PowOp],
                             [MHLO_SubtractOp, CHLO_BroadcastSubOp, TF_SubOp],
                             [MHLO_Atan2Op, CHLO_BroadcastAtan2Op, TF_Atan2Op]] in {
      def : Pat<(fromToBinPair[0]:$result $l, $r),
                (fromToBinPair[2] $l, $r),
                [(IsNotWithinScatterRegion $result)]>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

                            (TFL_AddOp $lhs, $rhs, TFL_AF_None)>;
    def LegalizeBiasAdd : Pat<
      (TF_BiasAddOp F32Tensor:$l, F32Tensor:$r, IsDataFormatNHWC:$data_format),
      (TF_AddV2Op $l, $r)>;
    def LegalizeSub : Pat<(TF_SubOp $lhs, $rhs),
                          (TFL_SubOp $lhs, $rhs, TFL_AF_None)>;
    def LegalizeMul : Pat<(TF_MulOp $lhs, $rhs),
                          (TFL_MulOp $lhs, $rhs, TFL_AF_None)>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    //             (TF_MulOp:$multiplier
    //                 $scale,
    //                 (TF_RsqrtOp
    //                     (TF_AddOp $variance,
    //                               (TF_ConstOp $epsilon))))),
    //         (TF_SubOp $offset, (TF_MulOp $mean, $multiplier))),
    //    // We already guaranteed that the last five results have no use so it does
    //    // not matter what value we provide here for replacement.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      let results = (outs
        Res<TF_Int64Tensor, [{A Tensor of the same shape as the input `string_tensor`.}]>:$output
      );
    }
    
    def TF_SubOp : TF_Op<"Sub", [Pure, ResultsBroadcastableShape, TF_CwiseBinary, TF_SameOperandsAndResultElementTypeResolveRef]>,
                   WithBroadcastableBinOpBuilder {
      let summary = "Returns x - y element-wise.";
    
    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