Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for W1 (2.25 sec)

  1. src/runtime/softfloat64.go

    	const (
    		s    = 32
    		mask = 1<<s - 1
    	)
    	u0 := u & mask
    	u1 := u >> s
    	v0 := v & mask
    	v1 := v >> s
    	w0 := u0 * v0
    	t := u1*v0 + w0>>s
    	w1 := t & mask
    	w2 := t >> s
    	w1 += u0 * v1
    	return u * v, u1*v1 + w2 + w1>>s
    }
    
    // 128/64 -> 64 quotient, 64 remainder.
    // adapted from hacker's delight
    func divlu(u1, u0, v uint64) (q, r uint64) {
    	const b = 1 << 32
    
    	if u1 >= v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/resource_operation_safety_analysis_test.cc

      Scope root = Scope::NewRootScope().ExitOnError();
    
      Node* write_0 = MakeWrite(root, "W0");
      Node* neutral_0 = MakeNeutral(root, "N0");
      Node* read_0 = MakeRead(root, "R0");
      Node* write_1 = MakeWrite(root, "W1");
      Node* neutral_1 = MakeNeutral(root, "N1");
      Node* read_1 = MakeRead(root, "R1");
    
      root.graph()->AddControlEdge(write_0, neutral_0);
      root.graph()->AddControlEdge(neutral_0, read_0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 28 16:53:59 UTC 2020
    - 18.7K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Reader.kt

        readPriority(handler, streamId)
      }
    
      @Throws(IOException::class)
      private fun readPriority(
        handler: Handler,
        streamId: Int,
      ) {
        val w1 = source.readInt()
        val exclusive = w1 and 0x80000000.toInt() != 0
        val streamDependency = w1 and 0x7fffffff
        val weight = (source.readByte() and 0xff) + 1
        handler.priority(streamId, streamDependency, weight, exclusive)
      }
    
      @Throws(IOException::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. src/net/rpc/jsonrpc/all_test.go

    	ServeConn(srv)                                                    // must return, not loop
    }
    
    // Copied from package net.
    func myPipe() (*pipe, *pipe) {
    	r1, w1 := io.Pipe()
    	r2, w2 := io.Pipe()
    
    	return &pipe{r1, w2}, &pipe{r2, w1}
    }
    
    type pipe struct {
    	*io.PipeReader
    	*io.PipeWriter
    }
    
    type pipeAddr int
    
    func (pipeAddr) Network() string {
    	return "pipe"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:09:53 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	kind := asmKindForType(t, size)
    	cc = append(cc, newComponent(suffix, kind, s, off, size, suffix))
    
    	switch kind {
    	case 8:
    		if arch.ptrSize == 4 {
    			w1, w2 := "lo", "hi"
    			if arch.bigEndian {
    				w1, w2 = w2, w1
    			}
    			cc = append(cc, newComponent(suffix+"_"+w1, 4, "half "+s, off, 4, suffix))
    			cc = append(cc, newComponent(suffix+"_"+w2, 4, "half "+s, off+4, 4, suffix))
    		}
    
    	case asmEmptyInterface:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. src/crypto/sha256/sha256block_arm64.s

    	VREV32	V5.B16, V5.B16
    	VREV32	V6.B16, V6.B16
    	VREV32	V7.B16, V7.B16
    
    	VADD	V16.S4, V4.S4, V9.S4                        // V18(W0+K0...W3+K3)
    	SHA256SU0	V5.S4, V4.S4                        // V4: (su0(W1)+W0,...,su0(W4)+W3)
    	HASHUPDATE                                          // H4
    
    	VADD	V17.S4, V5.S4, V9.S4                        // V18(W4+K4...W7+K7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/bidi/core.go

    	}
    }
    
    // Resolving weak types Rules W1-W7.
    //
    // Note that some weak types (EN, AN) remain after this processing is
    // complete.
    func (s *isolatingRunSequence) resolveWeakTypes() {
    
    	// on entry, only these types remain
    	s.assertOnly(L, R, AL, EN, ES, ET, AN, CS, B, S, WS, ON, NSM, LRI, RLI, FSI, PDI)
    
    	// Rule W1.
    	// Changes all NSMs.
    	precedingCharacterType := s.sos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  8. src/math/bits/bits.go

    func Mul64(x, y uint64) (hi, lo uint64) {
    	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)
  9. tensorflow/compiler/mlir/lite/tests/prepare-quantize-signed.mlir

    // CHECK-DAG: %[[w1:.*]] = arith.constant dense<{{\[\[\[\[}}-1.000000e+00, 1.000000e+00]]]
    // CHECK-DAG: %[[b_q:.*]] = "tfl.quantize"(%[[bias]]){{.*}}{7.8740158861230386E-10,1.9998891450408216E-8,1.9998891805679583E-7}
    // CHECK-DAG: %[[b_dq:.*]] = "tfl.dequantize"(%[[b_q]])
    // CHECK-DAG: %[[w1_q:.*]] = "tfl.quantize"(%[[w1]]){{.*}}{0.0078740157480314959,0.015748031496062992,0.015748031496062992}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      return success();
    }
    
    // Convert:
    //   %y0 = dot_general(%x0, %w0)
    //   %y1 = dot_general(%x1, %w1)
    //   ...
    //   concatenate(%y0, %y1, ...)
    // To:
    //   %x = concatenate(%x0, %x1, ...)
    //   %w = concatenate(%w0, %w1, ...)
    //   dot_general(%x, %w)
    //
    // To simplify the implementation, we only handle the case where the final
    // concat is on the only batching dim.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top