Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for Tf_SubOp (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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