Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for w2 (0.02 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-quantize-signed.mlir

    // CHECK-DAG: %[[w1_dq:.*]] = "tfl.dequantize"(%[[w1_q]])
    // Weight with adjusted scales
    // CHECK-DAG: %[[w2:.*]] = arith.constant dense<{{\[\[\[\[}}-1.000000e+00, 1.000000e+00]]]
    // CHECK-DAG: %[[w2_q:.*]] = "tfl.quantize"(%[[w2]]){{.*}}{0.0078740157480314959,0.19998891099675145,1.9998891454946508}
    // CHECK-DAG: %[[w2_dq:.*]] = "tfl.dequantize"(%[[w2_q]])
    // Bias with adjusted scales
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/extract_head_tail_outside_compilation.mlir

        "tf_device.cluster"() ({
          %a = "tf.A"() {_xla_outside_compilation = "cluster1"} : () -> tensor<i32>
          %b = "tf.B"(%a) {_xla_outside_compilation = "cluster1"} : (tensor<i32>) -> tensor<f32>
          %w1, %w2 = "tf.WhileRegion"(%a, %b) ({
          ^bb0(%arg1: tensor<i32>, %arg2: tensor<f32>):
            %7 = "tf.H"(%arg1) :  (tensor<i32>) -> tensor<i1>
            "tf.Yield"(%7) : (tensor<i1>) -> ()
          }, {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  3. src/io/io_test.go

    				t.Fatalf("Write failed, n: %d, err: %v", n, err)
    			}
    		}
    		checkContent(name, f)
    
    		// Copy -> Write
    		// Copy file f to file f2
    		name = "Copy"
    		w2, f2 := makeOffsetWriter(name)
    		defer f2.Close()
    		Copy(w2, f)
    		checkContent(name, f2)
    	})
    
    	// Copy -> WriteTo -> Write
    	// Note: strings.Reader implements the io.WriterTo interface.
    	name = "Write_Of_Copy_WriteTo"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:04:41 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  4. src/math/bits/bits.go

    	const mask32 = 1<<32 - 1
    	x0 := x & mask32
    	x1 := x >> 32
    	y0 := y & mask32
    	y1 := y >> 32
    	w0 := x0 * y0
    	t := x1*y0 + w0>>32
    	w1 := t & mask32
    	w2 := t >> 32
    	w1 += x0 * y1
    	hi = x1*y1 + w2 + w1>>32
    	lo = x * y
    	return
    }
    
    // --- Full-width divide ---
    
    // Div returns the quotient and remainder of (hi, lo) divided by y:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. src/math/lgamma.go

    //      Let z = 1/x, then we approximation
    //              f(z) = lgamma(x) - (x-0.5)(log(x)-1)
    //      by
    //                                  3       5             11
    //              w = w0 + w1*z + w2*z  + w3*z  + ... + w6*z
    //      where
    //              |w - f(z)| < 2**-58.74
    //
    //   4. For negative x, since (G is gamma function)
    //              -x*G(-x)*G(x) = pi/sin(pi*x),
    //      we have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv13-ClientCert-ECDSA-RSA

    00000230  17 aa 28 56 20 ee 82 fd  de d1 55 b8 e9 27 ae 3d  |..(V .....U..'.=|
    00000240  e1 44 d6 0b b9 7a 25 77  b0 f1 be 64 ae cc 0d 44  |.D...z%w...d...D|
    00000250  af 57 32 9f cf bc c0 07  00 0b 19 97 08 0a d5 50  |.W2............P|
    00000260  20 0e ef d5 1e 2e 68 82  ae 2d 84 47 3d 9b 5b 24  | .....h..-.G=.[$|
    00000270  55 95 b2 93 e0 60 a2 cd  e5 72 69 b3 e2 de da 70  |U....`...ri....p|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/arith_test.go

    	}
    }
    
    var loadSymData = [...]byte{0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08}
    
    func testLoadSymCombine(t *testing.T) {
    	w2 := uint16(0x0201)
    	g2 := uint16(loadSymData[0]) | uint16(loadSymData[1])<<8
    	if g2 != w2 {
    		t.Errorf("testLoadSymCombine failed, wanted %d got %d", w2, g2)
    	}
    	w4 := uint32(0x04030201)
    	g4 := uint32(loadSymData[0]) | uint32(loadSymData[1])<<8 |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    			pos += 4
    
    		case xReadCp:
    			immcpos = pos
    			if pos+6 > len(src) {
    				return truncated(src, mode)
    			}
    			w := binary.LittleEndian.Uint32(src[pos:])
    			w2 := binary.LittleEndian.Uint16(src[pos+4:])
    			immc = int64(w2)<<32 | int64(w)
    			pos += 6
    
    		// Output.
    
    		case xSetOp:
    			inst.Op = Op(decoder[pc])
    			pc++
    
    		case xArg1,
    			xArg3,
    			xArgAL,
    			xArgAX,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    type Arg interface {
    	isArg()
    	String() string
    }
    
    // A Reg is a single register.
    // The zero value denotes W0, not the absence of a register.
    type Reg uint16
    
    const (
    	W0 Reg = iota
    	W1
    	W2
    	W3
    	W4
    	W5
    	W6
    	W7
    	W8
    	W9
    	W10
    	W11
    	W12
    	W13
    	W14
    	W15
    	W16
    	W17
    	W18
    	W19
    	W20
    	W21
    	W22
    	W23
    	W24
    	W25
    	W26
    	W27
    	W28
    	W29
    	W30
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/bidi/core.go

    		if t == NSM {
    			s.types[i] = precedingCharacterType
    		} else {
    			// if t.in(LRI, RLI, FSI, PDI) {
    			// 	precedingCharacterType = ON
    			// }
    			precedingCharacterType = t
    		}
    	}
    
    	// Rule W2.
    	// EN does not change at the start of the run, because sos != AL.
    	for i, t := range s.types {
    		if t == EN {
    			for j := i - 1; j >= 0; j-- {
    				if t := s.types[j]; t.in(L, R, AL) {
    					if t == AL {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
Back to top