Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for sig1 (0.06 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    	if l != 0 || h&0xffff != 0 {
    		return -1
    	}
    	h1 := h & 0x7fc00000
    	if h1 != 0x40000000 && h1 != 0x3fc00000 {
    		return -1
    	}
    	n := 0
    
    	// sign bit (a)
    	if h&0x80000000 != 0 {
    		n |= 1 << 7
    	}
    
    	// exp sign bit (b)
    	if h1 == 0x3fc00000 {
    		n |= 1 << 6
    	}
    
    	// rest of exp and mantissa (cd-efgh)
    	n |= int((h >> 16) & 0x3f)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // CHECK:  return %[[RES0]] : tensor<8xf32>
    }
    
    func.func @sign(%arg0: tensor<8xf32>) -> tensor<8xf32> {
      %0 = "tf.Sign"(%arg0) : (tensor<8xf32>) -> tensor<8xf32>
      func.return %0 : tensor<8xf32>
    
    // CHECK-LABEL: sign
    // CHECK: %[[RES0:.*]] = "tfl.sign"(%arg0) : (tensor<8xf32>) -> tensor<8xf32>
    // CHECK:  return %[[RES0]] : tensor<8xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Rsh8Ux64  <t> (Rsh8Ux64  x (Const64 [c])) (Const64 [d])) && !uaddOvf(c,d) => (Rsh8Ux64  x (Const64 <t> [c+d]))
    
    // Remove signed right shift before an unsigned right shift that extracts the sign bit.
    (Rsh8Ux64  (Rsh8x64  x _) (Const64 <t> [7] )) => (Rsh8Ux64  x (Const64 <t> [7] ))
    (Rsh16Ux64 (Rsh16x64 x _) (Const64 <t> [15])) => (Rsh16Ux64 x (Const64 <t> [15]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = REG_SP
    			// Generate 'ADDQ $x, SP' or 'SUBQ $x, SP', with x positive.
    			// One exception: It is smaller to encode $-0x80 than $0x80.
    			// For that case, flip the sign and the op:
    			// Instead of 'ADDQ $0x80, SP', generate 'SUBQ $-0x80, SP'.
    			switch v := p.From.Offset; {
    			case v == 0:
    				p.As = obj.ANOP
    			case v == 0x80 || (v < 0 && v != -0x80):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

    #
    # TODO(zmerlynn): Note that this function doesn't so much "quote" as
    # "strip out quotes", and we really should be using a YAML library for
    # this, but PyYAML isn't shipped by default, and *rant rant rant ... SIGH*
    function yaml-quote {
      echo "${@:-}" | sed -e "s/'/''/g;s/^/'/i;s/$/'/i"
    }
    
    # Writes the cluster location into a temporary file.
    # Assumed vars
    #   ZONE
    function write-cluster-location {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // type's signedness, we will determine whether or not sign extension is
      // needed.
      auto cast = [&](APInt value) {
        if (involves_bool) {
          // Handle boolean inputs or outputs explicitly as it doesn't have the same
          // behavior as extension or truncation.
          // true input should always be cast to 1 and not -1 as the sign extension
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    byte[] CHUNK_SEPARATOR; static final int BASELENGTH = 255; static final int LOOKUPLENGTH = 64; static final int EIGHTBIT = 8; static final int SIXTEENBIT = 16; static final int TWENTYFOURBITGROUP = 24; static final int FOURBYTE = 4; static final int SIGN = -128; static final byte PAD = 61; private static byte[] base64Alphabet; private static byte[] lookUpBase64Alphabet; public void Base64(); private static boolean isBase64(byte); public static boolean isArrayByteBase64(byte[]); public static byte[]...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        @CheckForNull
        /*
         * Our checker arguably should produce a nullness error here until we see @NonNull in JDK APIs.
         * But it doesn't, which may be a sign that we still permit parameter contravariance in some
         * cases?
         */
        public V computeIfPresent(
            K key, BiFunction<? super K, ? super @NonNull V, ? extends @Nullable V> remappingFunction) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func EqualSid(sid1 *SID, sid2 *SID) (isEqual bool) {
    	r0, _, _ := syscall.Syscall(procEqualSid.Addr(), 2, uintptr(unsafe.Pointer(sid1)), uintptr(unsafe.Pointer(sid2)), 0)
    	isEqual = r0 != 0
    	return
    }
    
    func FreeSid(sid *SID) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      float float_val = 0.0f;
      if (!int_values.empty()) {
        const APInt apint_val = *int_values.begin();
        if (dense_int_attr.getType().getElementType().isSignedInteger()) {
          // Get the sign-extended value (=>int64) if the type is signed.
          float_val = apint_val.getSExtValue();
        } else {
          // Get the zero-extended value (=>uint64) if unsigned or signless.
          float_val = apint_val.getZExtValue();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top