Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for north (0.08 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        }
    
        // We assume that functional If and While nodes have at least
        // min_cluster_size non-trivial nodes in them.  It would be more principled
        // to (recursively) verify this fact, but that's probably not worth the
        // trouble.
    
        if (cluster->effective_cluster_size() >= debug_options_.min_cluster_size ||
            cluster->has_functional_control_flow() ||
            cluster->is_xla_compile_attr_true()) {
    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. src/runtime/mgc.go

    		// rather than starting all in a batch and then waiting once
    		// afterwards. By running one goroutine at a time, we can take
    		// advantage of runnext to bounce back and forth between
    		// workers and this goroutine. In an overloaded application,
    		// this can reduce GC start latency by prioritizing these
    		// goroutines rather than waiting on the end of the run queue.
    		<-ready
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    	// be very high if they were to be backed by huge pages (e.g. a few MiB makes
    	// a huge difference for an 8 MiB heap, but barely any difference for a 1 GiB
    	// heap). The benefit of huge pages is also not worth it for small heaps,
    	// because only a very, very small part of the metadata is used for small heaps.
    	//
    	// N.B. If the heap goal exceeds the threshold then shrinks to a very small size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context_test.go

    			AuthenticationPolicies{}, NetworkManager{}, sidecarIndex{}, Telemetries{}, ProxyConfigs{}, ConsolidatedDestRule{},
    			ClusterLocalHosts{}),
    		// These are not feasible/worth comparing
    		cmpopts.IgnoreTypes(sync.RWMutex{}, localServiceDiscovery{}, FakeStore{}, atomic.Bool{}, sync.Mutex{}),
    		cmpopts.IgnoreUnexported(IstioEndpoint{}),
    		cmpopts.IgnoreInterfaces(struct{ mesh.Holder }{}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    	gs.SetType(sym.SDWARFSECT)
    
    	gs.AddUint8(GdbScriptPythonFileId)
    	gs.Addstring(gdbscript)
    	return dwarfSecInfo{syms: []loader.Sym{gs.Sym()}}
    }
    
    // FIXME: might be worth looking replacing this map with a function
    // that switches based on symbol instead.
    
    var prototypedies map[string]*dwarf.DWDie
    
    func dwarfEnabled(ctxt *Link) bool {
    	if *FlagW { // disable dwarf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Roll it out to your team::
    Once you have your developer workflow working, for example running tests from the IDE, you can consider enabling it for your team.
    A faster turnaround when changing code and running tests could be worth it.
    You'll probably want to do this as an opt-in first.
    +
    If needed, turn problems into warnings and set the maximum number of allowed problems in your build `gradle.properties` file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    	-vet list
    	    Configure the invocation of "go vet" during "go test"
    	    to use the comma-separated list of vet checks.
    	    If list is empty, "go test" runs "go vet" with a curated list of
    	    checks believed to be always worth addressing.
    	    If list is "off", "go test" does not run "go vet" at all.
    
    The following flags are also recognized by 'go test' and can be used to
    profile the tests during execution:
    
    	-benchmem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Gradle allows you to create as many archive tasks as you want, but it's worth considering that many convention-based plugins provide their own.
    For example, the Java plugin adds a `jar` task for packaging a project's compiled classes and resources in a JAR.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    		pp.mspancache.len++
    		return
    	}
    	// Failing that (or if we don't have a p), just free it to
    	// the heap.
    	h.spanalloc.free(unsafe.Pointer(s))
    }
    
    // allocSpan allocates an mspan which owns npages worth of memory.
    //
    // If typ.manual() == false, allocSpan allocates a heap span of class spanclass
    // and updates heap accounting. If manual == true, allocSpan allocates a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    _Adds device variable formatting op to allow compilation-guided variable formatting._
    
    A pass that takes advantage of a loop to add ops that allow the execution to
    avoid repeatedly formatting variables back and forth. The desired formatting
    is determined by TPU program compilation, so this pass does not include how
    to reformat the variables, but only inserts general TPUReshardVariablesOps in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top