Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for GreaterEqual (0.33 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (GreaterThan (FlagGT)) => (MOVDconst [1])
    
    (GreaterEqual (FlagEQ)) => (MOVDconst [1])
    (GreaterEqual (FlagLT)) => (MOVDconst [0])
    (GreaterEqual (FlagGT)) => (MOVDconst [1])
    
    // absorb InvertFlags into boolean values
    ((Equal|NotEqual|LessThan|GreaterThan|LessEqual|GreaterEqual) (InvertFlags x)) => ((Equal|NotEqual|GreaterThan|LessThan|GreaterEqual|LessEqual) x)
    
    
    // Elide compares of bit tests
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritePPC64.go

    }
    func rewriteValuePPC64_OpPPC64GreaterEqual(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (GreaterEqual (FlagEQ))
    	// result: (MOVDconst [1])
    	for {
    		if v_0.Op != OpPPC64FlagEQ {
    			break
    		}
    		v.reset(OpPPC64MOVDconst)
    		v.AuxInt = int64ToAuxInt(1)
    		return true
    	}
    	// match: (GreaterEqual (FlagLT))
    	// result: (MOVDconst [0])
    	for {
    		if v_0.Op != OpPPC64FlagLT {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    		return nil
    	}
    	return v.Args[0]
    }
    
    // arm64Negate finds the complement to an ARM64 condition code,
    // for example !Equal -> NotEqual or !LessThan -> GreaterEqual
    //
    // For floating point, it's more subtle because NaN is unordered. We do
    // !LessThanF -> NotLessThanF, the latter takes care of NaNs.
    func arm64Negate(op Op) Op {
    	switch op {
    	case OpARM64LessThan:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      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 = [{
    *NOTE*: `GreaterEqual` supports broadcasting. More about broadcasting
    [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. RELEASE.md

        *   Unary GPU kernels: Abs, Atanh, Acos, Acosh, Asin, Asinh, Atan, Cos, Cosh, Sin, Sinh, Tan, Tanh.
        *   Binary GPU kernels: AddV2, Sub, Div, DivNoNan, Mul, MulNoNan, FloorDiv, Equal, NotEqual, Greater, GreaterEqual, LessEqual, Less.
    
    * `tf.lite`
        * Add experimental supports conversion of models that may be larger than 2GB before buffer deduplication
    
    ### Bug Fixes and Other Changes
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top