Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for lessEqual (0.33 sec)

  1. src/runtime/mranges.go

    // If b is strictly contained in a, thus forcing a split, it will throw.
    func (a addrRange) subtract(b addrRange) addrRange {
    	if b.base.lessEqual(a.base) && a.limit.lessEqual(b.limit) {
    		return addrRange{}
    	} else if a.base.lessThan(b.base) && b.limit.lessThan(a.limit) {
    		throw("bad prune")
    	} else if b.limit.lessThan(a.limit) && a.base.lessThan(b.limit) {
    		a.base = b.limit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64latelower.rules

    // Boolean-generating instructions (NOTE: NOT all boolean Values) always
    // zero upper bit of the register; no need to zero-extend
    (MOVBUreg x:((Equal|NotEqual|LessThan|LessThanU|LessThanF|LessEqual|LessEqualU|LessEqualF|GreaterThan|GreaterThanU|GreaterThanF|GreaterEqual|GreaterEqualU|GreaterEqualF) _)) => x
    
    // omit unsigned extension
    (MOVWUreg x) && zeroUpper32Bits(x, 3) => x
    
    // don't extend after proper load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Less64U x y) => (LessThanU (CMP x y))
    
    (Leq8  x y) => (LessEqual (CMPW (SignExt8to32  x) (SignExt8to32  y)))
    (Leq16 x y) => (LessEqual (CMPW (SignExt16to32 x) (SignExt16to32 y)))
    (Leq32 x y) => (LessEqual (CMPW x y))
    (Leq64 x y) => (LessEqual (CMP x y))
    
    // Refer to the comments for op Less64F above.
    (Leq32F x y) => (LessEqualF (FCMPS x y))
    (Leq64F x y) => (LessEqualF (FCMPD x y))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Less(32|64)U x y) => (LessThan ((CMPWU|CMPU) x y))
    
    (Leq(8|16) x y)  => (LessEqual (CMPW (SignExt(8|16)to32 x) (SignExt(8|16)to32 y)))
    (Leq(32|64) x y) => (LessEqual ((CMPW|CMP) x y))
    (Leq(32|64)F x y) => (FLessEqual (FCMPU x y))
    
    (Leq(8|16)U x y)  => (LessEqual (CMPWU (ZeroExt(8|16)to32 x) (ZeroExt(8|16)to32 y)))
    (Leq(32|64)U x y) => (LessEqual (CMP(WU|U) x y))
    
    // Absorb pseudo-ops into blocks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.golden_summary

     Const 4
     Floor 1
     Identity 1
     Mul 2
     Pow 1
     Sub 1
    cluster 9 size 5
     All 1
     Const 1
     Less 1
     LogicalAnd 1
     LogicalNot 1
    cluster 10 size 9
     All 1
     Const 4
     Equal 1
     LessEqual 1
     LogicalOr 1
     Max 1
    cluster 11 size 302
     Add 24
     BatchMatMulV2 1
     BiasAdd 8
     Cast 8
     ConcatV2 16
     Const 81
     ExpandDims 3
     Fill 1
     GreaterEqual 8
     Identity 1
     Less 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Less32U x y) => (LessThanU (CMP x y))
    
    (Leq8 x y)  => (LessEqual (CMP (SignExt8to32 x) (SignExt8to32 y)))
    (Leq16 x y) => (LessEqual (CMP (SignExt16to32 x) (SignExt16to32 y)))
    (Leq32 x y) => (LessEqual (CMP x y))
    (Leq(32|64)F x y) => (GreaterEqual (CMP(F|D) y x)) // reverse operands to work around NaN
    
    (Leq8U x y)  => (LessEqualU (CMP (ZeroExt8to32 x) (ZeroExt8to32 y)))
    (Leq16U x y) => (LessEqualU (CMP (ZeroExt16to32 x) (ZeroExt16to32 y)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-binary-elementwise.mlir

      %0 = "tf.Less"(%arg0, %arg1) : (tensor<2xi32>, tensor<2xi32>) -> tensor<2xi1>
      func.return %0: tensor<2xi1>
    }
    
    // CHECK-LABEL: func @less_equal
    func.func @less_equal(%arg0: tensor<2xi32>, %arg1: tensor<2xi32>) -> tensor<2xi1> {
      // CHECK-NEXT:  mhlo.compare LE, %arg0, %arg1
      %0 = "tf.LessEqual"(%arg0, %arg1) : (tensor<2xi32>, tensor<2xi32>) -> tensor<2xi1>
      func.return %0: tensor<2xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteARM64latelower.go

    		x := v_0
    		if x.Op != OpARM64LessThanF {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(LessEqual _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpARM64LessEqual {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(LessEqualU _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpARM64LessEqualU {
    			break
    		}
    		v.copyOf(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v2/testdata/outside_compilation.mlir

          %outputs_22, %control_23 = tf_executor.island wraps "tf.Const"() {device = "/device:CPU:0", value = dense<3> : tensor<i32>} : () -> tensor<i32>
          %outputs_24, %control_25 = tf_executor.island wraps "tf.LessEqual"(%outputs_0, %outputs_22) {device = "/device:CPU:0"} : (tensor<i32>, tensor<i32>) -> tensor<*xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:19:45 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/math_grad.cc

    #include "tensorflow/cc/ops/standard_ops.h"
    
    namespace tensorflow {
    namespace ops {
    namespace {
    
    // Logical operations have no gradients.
    REGISTER_NO_GRADIENT_OP("Less");
    REGISTER_NO_GRADIENT_OP("LessEqual");
    REGISTER_NO_GRADIENT_OP("Greater");
    REGISTER_NO_GRADIENT_OP("GreaterEqual");
    REGISTER_NO_GRADIENT_OP("Equal");
    REGISTER_NO_GRADIENT_OP("ApproximateEqual");
    REGISTER_NO_GRADIENT_OP("NotEqual");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
Back to top