Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for posFor (0.12 sec)

  1. tensorflow/compiler/jit/device_util.h

      // return false.
      //
      // TODO(sanjoy): Change this to take a typed std::function if that's
      // performance neutral.
      template <typename FnTy>
      void ForEach(FnTy func) const {
        // This is really a poor man's iterator, we should consider writing a proper
        // iterator if this ends up being used widely.
        for (int word_index = 0, end = storage_.size(); word_index < end;
             word_index++) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallHandshakeTest.kt

            TlsVersion.TLS_1_2,
            reversed,
          )
    
        makeRequest(client)
    
        val expectedConnectionCipherSuites = expectedConnectionCipherSuites(client)
        // Will choose a poor cipher suite but not plaintext.
    //    assertThat(handshake.cipherSuite).isEqualTo("TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256")
        assertThat(handshakeEnabledCipherSuites).containsExactly(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	case AddrPreIndex:
    		return fmt.Sprintf("[%s,%s]!", R, X)
    	case AddrPostIndex:
    		return fmt.Sprintf("[%s],%s", R, X)
    	case AddrPostReg:
    		post := Reg(X0) + Reg(m.imm)
    		postR := post.String()
    		return fmt.Sprintf("[%s], %s", R, postR)
    	}
    	return fmt.Sprintf("unimplemented!")
    }
    
    // A MemExtend is a memory reference made up of a base R and index expression X.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/check.go

    // Otherwise, it is a no-op.
    func (a *action) describef(pos poser, format string, args ...interface{}) {
    	if debug {
    		a.desc = &actionDesc{pos, format, args}
    	}
    }
    
    // An actionDesc provides information on an action.
    // For debugging only.
    type actionDesc struct {
    	pos    poser
    	format string
    	args   []interface{}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. src/runtime/runtime1.go

    	if GOOS == "linux" {
    		// On Linux, MADV_FREE is faster than MADV_DONTNEED,
    		// but doesn't affect many of the statistics that
    		// MADV_DONTNEED does until the memory is actually
    		// reclaimed. This generally leads to poor user
    		// experience, like confusing stats in top and other
    		// monitoring tools; and bad integration with
    		// management systems that respond to memory usage.
    		// Hence, default to MADV_DONTNEED.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/g3doc/space_to_depth.md

    convolution in the new MLIR bridge to improve MXU efficiency of low batch size
    convolutions._
    
    ## Background
    
    For image models, the first layer is usually not MXU friendly as it has a
    feature size of 3. This results in poor performance especially with small batch.
    
    One way to address this issue is to use the `space-to-depth` transform. This
    optimization tiles the 2x2 space dimensions to the feature dimension so that the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Oct 24 02:51:43 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  7. src/runtime/mcentral.go

    	//
    	// TODO(austin,mknyszek): This still has bad worst-case
    	// throughput. For example, this could find just one free slot
    	// on the 100th swept span. That limits allocation latency, but
    	// still has very poor throughput. We could instead keep a
    	// running free-to-used budget and switch to fresh span
    	// allocation if the budget runs low.
    	spanBudget := 100
    
    	var s *mspan
    	var sl sweepLocker
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. docs/pt/docs/deployment.md

    * Por padrão, isso significa que você pode ter somente um certificado HTTPS por endereço IP.
        * Não importa quão grande é seu servidor ou quão pequena cada aplicação que você tenha possar ser.
        * No entanto, existe uma solução para isso.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 18 16:16:54 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/call.go

    // and x.mode is set to invalid.
    func (check *Checker) funcInst(T *target, pos syntax.Pos, x *operand, inst *syntax.IndexExpr, infer bool) ([]Type, []syntax.Expr) {
    	assert(T != nil || inst != nil)
    
    	var instErrPos poser
    	if inst != nil {
    		instErrPos = inst.Pos()
    		x.expr = inst // if we don't have an index expression, keep the existing expression of x
    	} else {
    		instErrPos = pos
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapMaker.java

       * WeakReference} (by default, strong references are used).
       *
       * <p>Weak values will be garbage collected once they are weakly reachable. This makes them a poor
       * candidate for caching.
       *
       * <p><b>Warning:</b> when this method is used, the resulting map will use identity ({@code ==})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top