Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for sig2 (0.08 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    		case AOR:
    			if int64(uint32(v)) != v { // needs sign extend
    				zRIL(_a, op_LGFI, regtmp(p), uint32(v), asm)
    				zRRE(op_OGR, uint32(p.To.Reg), regtmp(p), asm)
    			} else if int64(uint16(v)) == v {
    				zRI(op_OILL, uint32(p.To.Reg), uint32(v), asm)
    			} else {
    				zRIL(_a, op_OILF, uint32(p.To.Reg), uint32(v), asm)
    			}
    		case AXOR:
    			if int64(uint32(v)) != v { // needs sign extend
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let hasVerifier = 1;
    
      let extraClassDeclaration = [{
        // SameScalesOpInterface:
        bool RequiredSameOperandsAndResultsScale(bool sign, int bit_width) {
          // uint8 doesn't require same operands and results scales.
          bool is_uint8 = !sign && (bit_width == 8);
          return !is_uint8;
        }
      }];
    }
    
    def TFL_ConstOp : Op<TFL_Dialect, "pseudo_const", [ConstantLike, Pure,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"pick":                                 "\u26cf\ufe0f",
    	"pickup_truck":                         "\U0001f6fb",
    	"pie":                                  "\U0001f967",
    	"pig":                                  "\U0001f437",
    	"pig2":                                 "\U0001f416",
    	"pig_nose":                             "\U0001f43d",
    	"pill":                                 "\U0001f48a",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  6. 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)
  7. src/debug/elf/elf.go

    	R_X86_64_GOTPCREL        R_X86_64 = 9  /* Add 32 bit signed pcrel offset to GOT. */
    	R_X86_64_32              R_X86_64 = 10 /* Add 32 bit zero extended symbol value */
    	R_X86_64_32S             R_X86_64 = 11 /* Add 32 bit sign extended symbol value */
    	R_X86_64_16              R_X86_64 = 12 /* Add 16 bit zero extended symbol value */
    	R_X86_64_PC16            R_X86_64 = 13 /* Add 16 bit signed extended pc relative symbol value */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top