Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 77 for cmp1 (0.07 sec)

  1. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

                '\n{} = tfr.equal {}, {} -> i1'.format(ret, lhs, rhs), node)
          else:
            if lhs_ty == TFRTypes.I64:
              code = 'arith.cmpi'
            elif lhs_ty == TFRTypes.F32:
              code = 'arith.cmpf'
            elif lhs_ty == TFRTypes.INDEX:
              code = 'arith.cmpi'
              # TODO(fengliuai): the reverse type inference should solve the issue.
              rhs, _ = self._i64_to_index(rhs, rhs_ty)
            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)
  2. src/runtime/memmove_amd64.s

    	TESTQ	BX, BX
    	JEQ	move_0
    	CMPQ	BX, $2
    	JBE	move_1or2
    	CMPQ	BX, $4
    	JB	move_3
    	JBE	move_4
    	CMPQ	BX, $8
    	JB	move_5through7
    	JE	move_8
    	CMPQ	BX, $16
    	JBE	move_9through16
    	CMPQ	BX, $32
    	JBE	move_17through32
    	CMPQ	BX, $64
    	JBE	move_33through64
    	CMPQ	BX, $128
    	JBE	move_65through128
    	CMPQ	BX, $256
    	JBE	move_129through256
    
    	TESTB	$1, runtime·useAVXmemmove(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/addressingmodes.go

    				// but not the two instructions that led to them being combined here.  For example
    				// (CMPBconstload c (ADDQ x y)) -> (CMPBconstloadidx1 c x y) -> (CMPB c (MOVBloadidx1 x y))
    				// The final pair of instructions turns out to be notably faster, at least in some benchmarks.
    				f.Config.splitLoad(v)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 17:19:57 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  4. src/math/big/arith_amd64.s

    	LEAQ 4(BX), DX
    	CMPQ DX, R11
    	JLE U5
    	JMP E5
    
    L5:	MOVQ (R8)(BX*8), AX
    	MULQ R9
    	ADDQ CX, AX
    	ADCQ $0, DX
    	MOVQ AX, (R10)(BX*8)
    	MOVQ DX, CX
    	ADDQ $1, BX		// i++
    
    E5:	CMPQ BX, R11		// i < n
    	JL L5
    
    	MOVQ CX, c+64(FP)
    	RET
    
    
    // func addMulVVW(z, x []Word, y Word) (c Word)
    TEXT ·addMulVVW(SB),NOSPLIT,$0
    	CMPB ·support_adx(SB), $1
    	JEQ adx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite386.go

    			cmp := v_0.Args[0]
    			b.resetWithControl(Block386GE, cmp)
    			return true
    		}
    		// match: (If (SETEQ cmp) yes no)
    		// result: (EQ cmp yes no)
    		for b.Controls[0].Op == Op386SETEQ {
    			v_0 := b.Controls[0]
    			cmp := v_0.Args[0]
    			b.resetWithControl(Block386EQ, cmp)
    			return true
    		}
    		// match: (If (SETNE cmp) yes no)
    		// result: (NE cmp 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. pkg/kubelet/cm/memorymanager/policy_static_test.go

    				break
    			}
    		}
    	}
    
    	return len(copyMemoryBlocks) == 0
    }
    
    func areContainerMemoryAssignmentsEqual(t *testing.T, cma1, cma2 state.ContainerMemoryAssignments) bool {
    	if len(cma1) != len(cma2) {
    		return false
    	}
    
    	for podUID, container := range cma1 {
    		if _, ok := cma2[podUID]; !ok {
    			t.Logf("[memorymanager_tests] the assignment does not have pod UID %s", podUID)
    			return false
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  7. src/crypto/sha256/sha256block_amd64.s

    	SHA256RNDS2		msg, state1, state0		\
    	sha256Msg1		(m,a)
    
    TEXT ·block(SB), 0, $536-32
    	CMPB	·useSHA(SB), $1
    	JE	sha_ni
    	CMPB	·useAVX2(SB), $1
    	JE	avx2
    
    	MOVQ p_base+8(FP), SI
    	MOVQ p_len+16(FP), DX
    	SHRQ $6, DX
    	SHLQ $6, DX
    
    	LEAQ (SI)(DX*1), DI
    	MOVQ DI, 256(SP)
    	CMPQ SI, DI
    	JEQ  end
    
    	MOVQ dig+0(FP), BP
    	MOVL (0*4)(BP), R8  // a = H0
    	MOVL (1*4)(BP), R9  // b = H1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Fold boolean tests into blocks
    (NE (TESTB (SETL  cmp) (SETL  cmp)) yes no) => (LT  cmp yes no)
    (NE (TESTB (SETLE cmp) (SETLE cmp)) yes no) => (LE  cmp yes no)
    (NE (TESTB (SETG  cmp) (SETG  cmp)) yes no) => (GT  cmp yes no)
    (NE (TESTB (SETGE cmp) (SETGE cmp)) yes no) => (GE  cmp yes no)
    (NE (TESTB (SETEQ cmp) (SETEQ cmp)) yes no) => (EQ  cmp yes no)
    (NE (TESTB (SETNE cmp) (SETNE cmp)) yes no) => (NE  cmp 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)
  9. 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
          CHECK-NEXT: %{{.*}} = arith.addi %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)
  10. src/internal/types/testdata/check/builtins0.go

    	_ = append(f0 /* ERROR "used as value" */ ())
    	_ = append(f1())
    	_ = append(f2())
    	_ = append(f3())
    	_ = append(f5())
    	_ = append(ff /* ERROR "must be a slice" */ ()) // TODO(gri) better error message
    }
    
    func cap1() {
    	var a [10]bool
    	var p *[20]int
    	var c chan string
    	_ = cap() // ERROR "not enough arguments"
    	_ = cap(1, 2) // ERROR "too many arguments"
    	_ = cap(42 /* ERROR "invalid" */)
    	const _3 = cap(a)
    	assert(_3 == 10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
Back to top