Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 136 for heuristics (0.24 sec)

  1. src/runtime/mgcscavenge.go

    // density heuristics are best-effort heuristics. It's totally possible (but unlikely)
    // that a chunk that just became dense is scavenged in the case of a race between memory
    // allocation and scavenging.
    //
    // When synchronously scavenging for the memory limit or for debug.FreeOSMemory, these
    // "dense" packing heuristics are ignored (in other words, scavenging is "forced") because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    			// So additionally check that the start is within the user-mode half of
    			// the 64-bit address space.
    			return start - offset + loadSegment.Off - loadSegment.Vaddr, nil
    		}
    		// Various kernel heuristics and cases are handled separately.
    		if base, match := kernelBase(loadSegment, stextOffset, start, limit, offset); match {
    			return base, nil
    		}
    		// ChromeOS can remap its kernel to 0, and the caller might have not found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/Files.java

       * to the original. The following heuristics are used:
       *
       * <ul>
       *   <li>empty string becomes .
       *   <li>. stays as .
       *   <li>fold out ./
       *   <li>fold out ../ when possible
       *   <li>collapse multiple slashes
       *   <li>delete trailing slashes (unless the path is just "/")
       * </ul>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/block.go

    	HotInitial                       // In the block order, the first one for a given loop.  Not necessarily topological header.
    	HotPgo                           // By PGO-based heuristics, this block occurs in a hot loop
    
    	HotNot                 = 0
    	HotInitialNotFlowIn    = HotInitial | HotNotFlowIn          // typically first block of a rotated loop, loop is entered with a branch (not to this block).  No PGO
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_compiler.h

      // computation.
      //
      // `compile_mode` controls the behavior of the compilation cache on a cache
      // miss.  If `compile_mode` is `kLazy` then, based on some profitability
      // heuristics, the compilation cache may decide not to compile the cluster at
      // this time.  In this case it returns null into both `out_compilation_result`
      // and `out_executable`.  If `compile_mode` is `kStrict` then the compilation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/Files.java

       * to the original. The following heuristics are used:
       *
       * <ul>
       *   <li>empty string becomes .
       *   <li>. stays as .
       *   <li>fold out ./
       *   <li>fold out ../ when possible
       *   <li>collapse multiple slashes
       *   <li>delete trailing slashes (unless the path is just "/")
       * </ul>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    	// os.Mkdir(td, 0777)
    	testenv.MustHaveGoBuild(t)
    
    	// NOTE: this testpoint has the unfortunate characteristic that it
    	// relies on the installed compiler, meaning that if you make
    	// changes to the inline heuristics code in your working copy and
    	// then run the test, it will test the installed compiler and not
    	// your local modifications. TODO: decide whether to convert this
    	// to building a fresh compiler on the fly, or using some other
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/build_xla_ops_pass.cc

                          /*new_node=*/xla_run.operation.node());
        g->RemoveNode(n);
      } else {
        // "Lazy" compilation: an _XlaCompile invocation may decide not to compile
        // the cluster based on profitability heuristics.
    
        // We generate the following graph:
        //
        //   (use_tf_call, use_xla_run) =
        //       Switch(pred=xla_compile.compilation_successful,
        //              value=xla_compile.key)
        //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/schedule.go

    	y := h.a[j]
    	sx := h.score[x.ID]
    	sy := h.score[y.ID]
    	if c := sx - sy; c != 0 {
    		return c < 0 // lower scores come earlier.
    	}
    	// Note: only scores are required for correct scheduling.
    	// Everything else is just heuristics.
    
    	ix := h.inBlockUses[x.ID]
    	iy := h.inBlockUses[y.ID]
    	if ix != iy {
    		return ix // values with in-block uses come earlier
    	}
    
    	if x.Pos != y.Pos { // Favor in-order line stepping
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"intel_syntax": helpText(
    		"Show assembly in Intel syntax",
    		"Only applicable to commands `disasm` and `weblist`"),
    
    	// Filtering options
    	"nodecount": helpText(
    		"Max number of nodes to show",
    		"Uses heuristics to limit the number of locations to be displayed.",
    		"On graphs, dotted edges represent paths through nodes that have been removed."),
    	"nodefraction": "Hide nodes below <f>*total",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top