Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for 1486 (0.2 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-RenegotiateOnce

    00000020  0f ad a1 da da 86 fb 60  07 4a 0e 5c ba 36 09 8b  |.......`.J.\.6..|
    00000030  95 3f f0 87 26 0f 7a e7  7c 1f af c7 67 42 c9 39  |.?..&.z.|...gB.9|
    00000040  39 6a 4d 8d 87 00 3b 14  76 4a 86 87 46 1e d4 04  |9jM...;.vJ..F...|
    00000050  2d ea c1 44 1f e8 87 71  da 1e 26 72 a2 e9 40 0c  |-..D...q..&r..@.|
    00000060  33 6e 6f 06 43 ed 7f fc  8f 4c d4 f4 0f 83 19 cb  |3no.C....L......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/compose-uniform-quantized-type.mlir

        %13 = stablehlo.broadcast_in_dim %4, dims = [0, 1, 2] : (tensor<1x1x3xf32>) -> tensor<1x4x3xf32>  // Optional
        %14 = stablehlo.multiply %12, %13 : tensor<1x4x3xf32>  // s1 * s2
        %15 = call @uniform_quantize_1(%14, %5, %6) : (tensor<1x4x3xf32>, tensor<1x1x1xf32>, tensor<1x1x1xi8>) -> tensor<1x4x3xi8>
        %16 = call @uniform_dequantize_0(%15, %5, %6) : (tensor<1x4x3xi8>, tensor<1x1x1xf32>, tensor<1x1x1xi8>) -> tensor<1x4x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 37K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/tfl_legalize_hlo.mlir

    // CHECK-NEXT:      %15 = "tfl.shape"(%arg1) : (tensor<4x?x256xf32>) -> tensor<3xi32>
    // CHECK-NEXT:      %16 = "tfl.pseudo_const"() <{value = dense<[0, 1]> : tensor<2xi64>}> : () -> tensor<2xi64>
    // CHECK-NEXT:      %17 = "tfl.gather"(%14, %16) <{axis = 0 : i32, batch_dims = 0 : i32}> : (tensor<3xi32>, tensor<2xi64>) -> tensor<2xi32>
    // CHECK-NEXT:      %18 = "tfl.pseudo_const"() <{value = dense<1> : tensor<1xi64>}> : () -> tensor<1xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  4. test/codegen/memcombine.go

    	// ppc64le:`MOVH\s`
    	// ppc64:`MOVHBR`
    	b[idx+1], b[idx+0] = byte(val>>8), byte(val)
    }
    
    func store_le_byte_2_idx_inv(b []byte, idx int, val uint16) {
    	_, _ = b[idx+0], b[idx+1]
    	// 386:`MOVW\s[A-Z]+,\s\([A-Z]+\)\([A-Z]+`,-`MOVB`
    	// ppc64le:`MOVH\s`
    	// ppc64:`MOVHBR`
    	b[idx+0], b[idx+1] = byte(val), byte(val>>8)
    }
    
    func store_le_byte_4_idx(b []byte, idx int, val uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    // %12 = stablehlo.convolution(%10, %11)  // q2 * z1
    // %13 = stablehlo.subtract %7, %12  // q1 * q2 - q2 * z1
    // %14 = stablehlo.constant  // Merged scale s1 * s2, precalculated.
    // %15 = stablehlo.broadcast_in_dim %14
    // %16 = stablehlo.multiply %13 %15  // r3 = s1 s2 (q1 q2 - q2 z1)
    //
    // The following quant -> dequant pattern is a no-op, but is required to
    // retrieve the quantization parameters for the output tensor.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  6. src/debug/elf/file.go

    		sym.Name = f.ByteOrder.Uint32(data[0:4])
    		sym.Value = f.ByteOrder.Uint32(data[4:8])
    		sym.Size = f.ByteOrder.Uint32(data[8:12])
    		sym.Info = data[12]
    		sym.Other = data[13]
    		sym.Shndx = f.ByteOrder.Uint16(data[14:16])
    		str, _ := getString(strdata, int(sym.Name))
    		symbols[i].Name = str
    		symbols[i].Info = sym.Info
    		symbols[i].Other = sym.Other
    		symbols[i].Section = SectionIndex(sym.Shndx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. src/fmt/fmt_test.go

    	{"%d", renamedInt8(-9), "-9"},
    	{"%v", renamedInt16(10), "10"},
    	{"%v", renamedInt32(-11), "-11"},
    	{"%X", renamedInt64(255), "FF"},
    	{"%v", renamedUint(13), "13"},
    	{"%o", renamedUint8(14), "16"},
    	{"%X", renamedUint16(15), "F"},
    	{"%d", renamedUint32(16), "16"},
    	{"%X", renamedUint64(17), "11"},
    	{"%o", renamedUintptr(18), "22"},
    	{"%x", renamedString("thing"), "7468696e67"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  8. src/net/http/request.go

    	if err != nil {
    		return nil, err
    	}
    	rc, ok := body.(io.ReadCloser)
    	if !ok && body != nil {
    		rc = io.NopCloser(body)
    	}
    	// The host's colon:port should be normalized. See Issue 14836.
    	u.Host = removeEmptyPort(u.Host)
    	req := &Request{
    		ctx:        ctx,
    		Method:     method,
    		URL:        u,
    		Proto:      "HTTP/1.1",
    		ProtoMajor: 1,
    		ProtoMinor: 1,
    		Header:     make(Header),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/cmd/trace/testdata/go122.test

    	pc=5079772 func=146 file=85 line=90
    	pc=5079785 func=59 file=36 line=90
    Stack id=38 nframes=2
    	pc=4310679 func=72 file=73 line=914
    	pc=4316644 func=107 file=73 line=1469
    Stack id=52 nframes=3
    	pc=4708004 func=147 file=148 line=81
    	pc=5079238 func=149 file=148 line=87
    	pc=5079164 func=71 file=36 line=41
    Stack id=20 nframes=3
    	pc=4708004 func=147 file=148 line=81
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ppc64/asm.go

    		// pla rX, x@tprel
    
    		const OP_MASK_PFX = 0xFFFFFFFF        // Discard prefix word
    		const OP_MASK = (0x3F << 26) | 0xFFFF // Preserve RT, RA
    		const OP_PFX = 1<<26 | 2<<24
    		const OP_PLA = 14 << 26
    		mask := packInstPair(target, OP_MASK_PFX, OP_MASK)
    		pla_op := packInstPair(target, OP_PFX, OP_PLA)
    		val &^= mask
    		val |= pla_op
    		fallthrough
    
    	case objabi.R_POWER_TLS_LE_TPREL34:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top