Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for ULE (0.11 sec)

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

    (ULT (FlagConstant [fc]) yes no) &&  fc.ult() => (First yes no)
    (ULT (FlagConstant [fc]) yes no) && !fc.ult() => (First no yes)
    
    (ULE (FlagConstant [fc]) yes no) &&  fc.ule() => (First yes no)
    (ULE (FlagConstant [fc]) yes no) && !fc.ule() => (First no yes)
    
    (UGT (FlagConstant [fc]) yes no) &&  fc.ugt() => (First yes no)
    (UGT (FlagConstant [fc]) yes no) && !fc.ugt() => (First no yes)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    ((EQ|LE|GE|ULE|UGE) (FlagEQ) yes no)     => (First yes no)
    ((NE|LT|GT|ULT|UGT) (FlagEQ) yes no)     => (First no yes)
    ((NE|LT|LE|ULT|ULE) (FlagLT_ULT) yes no) => (First yes no)
    ((EQ|GT|GE|UGT|UGE) (FlagLT_ULT) yes no) => (First no yes)
    ((NE|LT|LE|UGT|UGE) (FlagLT_UGT) yes no) => (First yes no)
    ((EQ|GT|GE|ULT|ULE) (FlagLT_UGT) yes no) => (First no yes)
    ((NE|GT|GE|ULT|ULE) (FlagGT_ULT) yes no) => (First yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (ULT (FlagConstant [fc]) yes no) &&  fc.ult() => (First yes no)
    (ULT (FlagConstant [fc]) yes no) && !fc.ult() => (First no yes)
    
    (ULE (FlagConstant [fc]) yes no) &&  fc.ule() => (First yes no)
    (ULE (FlagConstant [fc]) yes no) && !fc.ule() => (First no yes)
    
    (UGT (FlagConstant [fc]) yes no) &&  fc.ugt() => (First yes no)
    (UGT (FlagConstant [fc]) yes no) && !fc.ugt() => (First no yes)
    
    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. tensorflow/compiler/mlir/tfr/python/tfr_gen_test.py

          CHECK-NEXT: %{{.*}} = arith.cmpi "eq", %x, %y : i64
          CHECK-NEXT: %{{.*}} = arith.cmpi "ult", %x, %y : i64
          CHECK-NEXT: %{{.*}} = arith.cmpi "ule", %x, %y : i64
          CHECK-NEXT: %{{.*}} = arith.cmpi "ugt", %x, %y : i64
          CHECK-NEXT: %{{.*}} = arith.cmpi "uge", %x, %y : i64
          CHECK-NEXT: %{{.*}} = arith.cmpi "ne", %x, %y : i64
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 28.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite386.go

    		}
    		// match: (ULE (FlagLT_ULT) yes no)
    		// result: (First yes no)
    		for b.Controls[0].Op == Op386FlagLT_ULT {
    			b.Reset(BlockFirst)
    			return true
    		}
    		// match: (ULE (FlagLT_UGT) yes no)
    		// result: (First no yes)
    		for b.Controls[0].Op == Op386FlagLT_UGT {
    			b.Reset(BlockFirst)
    			b.swapSuccessors()
    			return true
    		}
    		// match: (ULE (FlagGT_ULT) yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteARM.go

    		}
    	case BlockARMULE:
    		// match: (ULE (FlagConstant [fc]) yes no)
    		// cond: fc.ule()
    		// result: (First yes no)
    		for b.Controls[0].Op == OpARMFlagConstant {
    			v_0 := b.Controls[0]
    			fc := auxIntToFlagConstant(v_0.AuxInt)
    			if !(fc.ule()) {
    				break
    			}
    			b.Reset(BlockFirst)
    			return true
    		}
    		// match: (ULE (FlagConstant [fc]) yes no)
    		// cond: !fc.ule()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    	case OpARM64GreaterThan:
    		return b2i(fc.gt())
    	case OpARM64GreaterThanU:
    		return b2i(fc.ugt())
    	case OpARM64LessEqual:
    		return b2i(fc.le())
    	case OpARM64LessEqualU:
    		return b2i(fc.ule())
    	case OpARM64GreaterEqual:
    		return b2i(fc.ge())
    	case OpARM64GreaterEqualU:
    		return b2i(fc.uge())
    	}
    	return 0
    }
    
    // logRule logs the use of the rule s. This will only be enabled if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "NE", controls: 1},
    		{name: "LT", controls: 1},
    		{name: "LE", controls: 1},
    		{name: "GT", controls: 1},
    		{name: "GE", controls: 1},
    		{name: "ULT", controls: 1},
    		{name: "ULE", controls: 1},
    		{name: "UGT", controls: 1},
    		{name: "UGE", controls: 1},
    		{name: "LTnoov", controls: 1}, // 'LT' but without honoring overflow
    		{name: "LEnoov", controls: 1}, // 'LE' but without honoring overflow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          rhs, rhs_ty = self.visit(right)
          if isinstance(op, ast.Eq):
            pred = 'eq'
          elif isinstance(op, ast.Lt):
            pred = 'ult'
          elif isinstance(op, ast.LtE):
            pred = 'ule'
          elif isinstance(op, ast.Gt):
            pred = 'ugt'
          elif isinstance(op, ast.GtE):
            pred = 'uge'
          elif isinstance(op, ast.NotEq):
            pred = 'ne'
          else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteARM64.go

    		}
    	case BlockARM64ULE:
    		// match: (ULE (FlagConstant [fc]) yes no)
    		// cond: fc.ule()
    		// result: (First yes no)
    		for b.Controls[0].Op == OpARM64FlagConstant {
    			v_0 := b.Controls[0]
    			fc := auxIntToFlagConstant(v_0.AuxInt)
    			if !(fc.ule()) {
    				break
    			}
    			b.Reset(BlockFirst)
    			return true
    		}
    		// match: (ULE (FlagConstant [fc]) yes no)
    		// cond: !fc.ule()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
Back to top