Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 157 for conservatively (0.25 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    		return
    	}
    
    	relocs := ldr.Relocs(s)
    	r := relocs.At(ri)
    	var t int64
    	// ldr.SymValue(rs) == 0 indicates a cross-package jump to a function that is not yet
    	// laid out. Conservatively use a trampoline. This should be rare, as we lay out packages
    	// in dependency order.
    	if ldr.SymValue(rs) != 0 {
    		t = ldr.SymValue(rs) + r.Add() - (ldr.SymValue(s) + int64(r.Off()))
    	}
    	switch r.Type() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    // This is ABIInternal because Go code injects its PC directly into new
    // goroutine stacks.
    TEXT runtime·debugCallV2<ABIInternal>(SB),NOSPLIT,$152-0
    	// Save all registers that may contain pointers so they can be
    	// conservatively scanned.
    	//
    	// We can't do anything that might clobber any of these
    	// registers before this.
    	MOVQ	R15, r15-(14*8+8)(SP)
    	MOVQ	R14, r14-(13*8+8)(SP)
    	MOVQ	R13, r13-(12*8+8)(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

      # Set queue_full action to block because we want to pause gracefully
      # in case of the off-the-limits load instead of throwing an exception
      buffer_queue_full_action block
      # Set the chunk limit conservatively to avoid exceeding the recommended
      # chunk size of 5MB per write request.
      buffer_chunk_limit 512k
      # Cap the combined memory usage of this buffer and the one below to
      # 512KiB/chunk * (6 + 2) chunks = 4 MiB
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // refines the element shape if all tensors written to the list across all
      // mutations have identical static shape.
      bool InferShapeForTensorListInitOps(Operation* op);
    
      // Conservatively infers shape of output tenorlist and item based on
      // input tensorlist's element shape.
      bool InferShapeForTensorListPopBackOp(TensorListPopBackOp op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        if (tensor_info.has_tensor_shape()) {
          array_info.shape = tensor_info.tensor_shape();
        } else {
          // If there is no tensor shape in the tensor info, conservatively set
          // unknown_rank to true.
          array_info.shape.set_unknown_rank(true);
        }
    
        results.insert(std::pair<std::string, ArrayInfo>(std::move(name),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    //    (note that returning `std::nullopt` here signals exactly that).
    // 3) If `is_stateless` is false and no ordering token is present, then we treat
    //    the op conservatively which means that different op instances need
    //    dependencies. This is realized by always returning the same string ("")
    //    in this case. In fact, we could return any string here, as long as it is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. src/cmd/internal/sys/args.go

    // license that can be found in the LICENSE file.
    
    package sys
    
    // ExecArgLengthLimit is the number of bytes we can safely
    // pass as arguments to an exec.Command.
    //
    // Windows has a limit of 32 KB. To be conservative and not worry about whether
    // that includes spaces or not, just use 30 KB. Darwin's limit is less clear.
    // The OS claims 256KB, but we've seen failures with arglen as small as 50KB.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 02 13:15:42 UTC 2021
    - 550 bytes
    - Viewed (0)
  8. test/escape_selfassign.go

    package escape
    
    type S struct {
    	i  int
    	pi *int
    }
    
    var sink S
    
    func f(p *S) { // ERROR "leaking param: p"
    	p.pi = &p.i
    	sink = *p
    }
    
    // BAD: "leaking param: p" is too conservative
    func g(p *S) { // ERROR "leaking param: p"
    	p.pi = &p.i
    }
    
    func h() {
    	var s S // ERROR "moved to heap: s"
    	g(&s)
    	sink = s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 16:36:56 UTC 2019
    - 538 bytes
    - Viewed (0)
  9. test/fixedbugs/issue5493.go

    		func() {
    			f1()
    		}()
    	}
    	runtime.SetFinalizer(&f1, func(f *func()) {
    		atomic.AddInt64(&count, -1)
    	})
    	go f2()
    	return nil
    }
    
    func main() {
    	// Does not work with gccgo, due to partially conservative GC.
    	// Try to enable when we have fully precise GC.
    	if runtime.Compiler == "gccgo" {
    		return
    	}
    	count = N
    	var wg sync.WaitGroup
    	wg.Add(N)
    	for i := 0; i < N; i++ {
    		go func() {
    			run()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 05 21:11:31 UTC 2021
    - 953 bytes
    - Viewed (0)
  10. test/deferfin.go

    package main
    
    import (
    	"runtime"
    	"sync"
    	"sync/atomic"
    	"time"
    )
    
    var sink func()
    
    func main() {
    	// Does not work with gccgo, due to partially conservative GC.
    	// Try to enable when we have fully precise GC.
    	if runtime.Compiler == "gccgo" {
    		return
    	}
    	N := 10
    	count := int32(N)
    	var wg sync.WaitGroup
    	wg.Add(N)
    	for i := 0; i < N; i++ {
    		go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 05 21:11:31 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top