Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 64 of 64 for overlap (0.12 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      //
      // Autoclustering can sometimes be overeager.  For example, clustering large
      // constants (or large broadcasts of constants) can increase the live range
      // of those constants, and increase overall memory usage.
      //
      // This function removes "obviously bad" cases like these.
      Status DeclusterNodes();
    
      // Manifests the clustering decisions into the TF graph by tagging nodes with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	return NewPutObjReader(hr)
    }
    
    // calculateSignedChunkLength - calculates the length of the overall stream (data + metadata)
    func calculateStreamContentLength(dataLen, chunkSize int64) int64 {
    	if dataLen <= 0 {
    		return 0
    	}
    	chunksCount := dataLen / chunkSize
    	remainingBytes := dataLen % chunkSize
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    	}
    }
    
    // If e != nil, it must be the shift expression; it may be nil for non-constant shifts.
    func (check *Checker) shift(x, y *operand, e syntax.Expr, op syntax.Operator) {
    	// TODO(gri) This function seems overly complex. Revisit.
    
    	var xval constant.Value
    	if x.mode == constant_ {
    		xval = constant.ToInt(x.val)
    	}
    
    	if allInteger(x.typ) || isUntyped(x.typ) && xval != nil && xval.Kind() == constant.Int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    )
    
    // netTestSem is a semaphore limiting the number of tests that may use the
    // external network in parallel. If non-nil, it contains one buffer slot per
    // test (send to acquire), with a low enough limit that the overall number of
    // connections (summed across subprocesses) stays at or below base.NetLimit.
    var netTestSem chan struct{}
    
    var exeSuffix string = func() string {
    	if runtime.GOOS == "windows" {
    		return ".exe"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top