Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for bottleneck (0.22 sec)

  1. src/cmd/go/internal/work/gc.go

    	//
    	// However, in practice, setting c above 4 tends not to help very much.
    	// See the analysis in CL 41192.
    	//
    	// TODO(josharian): attempt to detect whether this particular compilation
    	// is likely to be a bottleneck, e.g. when:
    	//   - it has no successor packages to compile (usually package main)
    	//   - all paths through the build graph pass through it
    	//   - critical path scheduling says it is high priority
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

    using SideEffectsByResourceId = std::map<ResourceId, SideEffects>;
    
    // We use `std::unordered_map` here for pointer stability reasons.
    // Note: If memory usage ever becomes a bottleneck here (not expected) we could
    // use a Trie-like data structure to avoid storing side effects in both parent
    // op and all its child ops (recursively), at the expense of lookup time.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set.go

    		// is we'd need to wait on the result of a create to record the pod's
    		// UID, which would require locking *across* the create, which will turn
    		// into a performance bottleneck. We should generate a UID for the pod
    		// beforehand and store it via ExpectCreations.
    		rsc.expectations.ExpectCreations(logger, rsKey, diff)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top