Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ffffffffff (0.38 sec)

  1. src/cmd/compile/internal/ssa/rewriteARM64.go

    		v.AuxInt = flagConstantToAuxInt(subFlags64(0, 1))
    		return true
    	}
    	// match: (CMPconst (MOVWUreg _) [c])
    	// cond: 0xffffffff < c
    	// result: (FlagConstant [subFlags64(0,1)])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpARM64MOVWUreg || !(0xffffffff < c) {
    			break
    		}
    		v.reset(OpARM64FlagConstant)
    		v.AuxInt = flagConstantToAuxInt(subFlags64(0, 1))
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritegeneric.go

    	for {
    		if v_0.Op != OpSignExt32to64 {
    			break
    		}
    		x := v_0.Args[0]
    		v.copyOf(x)
    		return true
    	}
    	// match: (Trunc64to32 (And64 (Const64 [y]) x))
    	// cond: y&0xFFFFFFFF == 0xFFFFFFFF
    	// result: (Trunc64to32 x)
    	for {
    		if v_0.Op != OpAnd64 {
    			break
    		}
    		_ = v_0.Args[1]
    		v_0_0 := v_0.Args[0]
    		v_0_1 := v_0.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    >>> equality_cast = tf.cast(a, tf.complex128)
    >>> print(equality_cast)
    tf.Tensor([1.+0.j 2.+0.j 3.+0.j], shape=(3,), dtype=complex128)
    
    Example 2:
    
    >>> tf.bitcast(tf.constant(0xffffffff, dtype=tf.uint32), tf.uint8)
    <tf.Tensor: shape=(4,), dtype=uint8, numpy=array([255, 255, 255, 255], dtype=uint8)>
    
    Example 3:
    
    >>> x = [1., 2., 3.]
    >>> y = [0., 2., 3.]
    >>> equality= tf.equal(x,y)
    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