Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Tf_GreaterEqualOp (0.24 sec)

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

    def LogicalNotOfGreaterEqual : Pat<
      (TF_LogicalNotOp:$src (TF_GreaterEqualOp $arg0, $arg1)),
      (TF_LessOp:$dest $arg0, $arg1), [], [(CopyAttrs $src, $dest)]>;
    
    def LogicalNotOfLess : Pat<(
      TF_LogicalNotOp:$src (TF_LessOp $arg0, $arg1)),
      (TF_GreaterEqualOp:$dest $arg0, $arg1), [], [(CopyAttrs $src, $dest)]>;
    
    def LogicalNotOfLessEqual : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/python/mlir_wrapper/ops.cc

                     .create<mlir::TF::EqualOp>(loc, x, y, opb.getBoolAttr(true))
                     .getOperation();
               });
    
      // mlir::TF::GreaterEqualOp
      py::class_<mlir::TF::GreaterEqualOp>(m, "Tf_GreaterEqualOp")
          .def("create",
               [](mlir::OpBuilder& opb, mlir::Location loc, mlir::Value x,
                  mlir::Value y) -> mlir::Operation* {
                 return opb.create<mlir::TF::GreaterEqualOp>(loc, x, y)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 02:12:49 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/python/mlir_wrapper/mlir_wrapper.pyi

    class Tf_EqualOp:
        def __init__(self, *args, **kwargs) -> None: ...
        def create(self, arg0: Location, arg1: Value, arg2: Value) -> Operation: ...
    
    class Tf_GreaterEqualOp:
        def __init__(self, *args, **kwargs) -> None: ...
        def create(self, arg0: Location, arg1: Value, arg2: Value) -> Operation: ...
    
    class Tf_GreaterOp:
        def __init__(self, *args, **kwargs) -> None: ...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 09 17:10:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

                                IsMhloTFCompareType:$type),
                (p[0] $l, $bcast_operand, ConstBoolAttrTrue),
                [(IsTFStyleBroadcast $broadcast_dimensions, $output)]>;
    }
    
    foreach p = [[TF_GreaterEqualOp, CHLO_ComparisonDirectionValue<"GE">],
                 [TF_GreaterOp, CHLO_ComparisonDirectionValue<"GT">],
                 [TF_LessEqualOp, CHLO_ComparisonDirectionValue<"LE">],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

       (TF_RangeOp:$range_n $zero, $n, $one),
       (TF_SubOp:$offset (TF_ExpandDimsOp $range_m, $neg_one), $range_n),
       (TF_LogicalAndOp:$indicator (TF_LessEqualOp $offset, $num_lower_or_m),
                                   (TF_GreaterEqualOp $offset,
                                                      (TF_NegOp $num_upper_or_n))),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

               $l, $r, (BinBroadcastDimensions $l, $r), direction,
               (CHLO_DEFAULT_COMPARISON_TYPE))>;
    
    def : DirectComparePat<TF_GreaterOp, CHLO_ComparisonDirectionValue<"GT">>;
    def : DirectComparePat<TF_GreaterEqualOp, CHLO_ComparisonDirectionValue<"GE">>;
    def : DirectComparePat<TF_LessOp, CHLO_ComparisonDirectionValue<"LT">>;
    def : DirectComparePat<TF_LessEqualOp, CHLO_ComparisonDirectionValue<"LE">>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeGreater : Pat<(TF_GreaterOp $l, $r), (TFL_GreaterOp $l, $r)>;
    
    def LegalizeLessEqual : Pat<(TF_LessEqualOp $l, $r), (TFL_LessEqualOp $l, $r)>;
    def LegalizeGreaterEqual : Pat<(TF_GreaterEqualOp $l, $r),
                                   (TFL_GreaterEqualOp $l, $r)>;
    
    // Gather in TF -> Gather in TFL with axis=0
    // The 'validate_indices' attribute is deprecated.
    def LegalizeGather: Pat<
    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/tensorflow/ir/tf_generated_ops.td

        TF_IntOrFpTensor:$x,
        TF_IntOrFpTensor:$y
      );
    
      let results = (outs
        TF_BoolTensor:$z
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    }
    
    def TF_GreaterEqualOp : TF_Op<"GreaterEqual", [Pure, ResultsBroadcastableShape]>,
                            WithBroadcastableCmpOpBuilder {
      let summary = "Returns the truth value of (x >= y) element-wise.";
    
      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