Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 486 for deltas (0.29 sec)

  1. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

      // remat.insert. We store changes to the alloc/dealloc sizes due to the
      // insertion in a vector `delta`: A change `c_alloc` of `operations_[i].alloc`
      // as `delta[i] += c_alloc`, and a change `c_dealloc` of
      // `operations_[i].dealloc` as `delta[i+1] -= c_dealloc`.
      std::vector<MemSpec> deltas;
    
      if (remat.begin == remat.end) {
        return deltas;
      }
    
      // Helper lambda: converts an operation index in the original range to its
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

          m.size += patch ? 0 : operations_[m.op_index - shift].alloc;
          // deltas is sorted by location; apply any corrections to the current
          // operator.
          for (; idelta != deltas.end() && idelta->op_index == m.op_index;
               ++idelta) {
            m.size += idelta->size;
          }
          mapper(m);
          m.size -= patch ? 0 : operations_[m.op_index - shift].dealloc;
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/pcln.go

    		// When the scan is over, we emit the closing ", pc)".
    		//
    		// The table is delta-encoded. The value deltas are signed and
    		// transmitted in zig-zag form, where a complement bit is placed in bit 0,
    		// and the pc deltas are unsigned. Both kinds of deltas are sent
    		// as variable-length little-endian base-128 integers,
    		// where the 0x80 bit indicates that the integer continues.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  4. src/unicode/letter.go

    	hi := len(caseRange)
    	for lo < hi {
    		m := int(uint(lo+hi) >> 1)
    		cr := caseRange[m]
    		if rune(cr.Lo) <= r && r <= rune(cr.Hi) {
    			delta := cr.Delta[_case]
    			if delta > MaxRune {
    				// In an Upper-Lower sequence, which always starts with
    				// an UpperCase letter, the real deltas always look like:
    				//	{0, 1, 0}    UpperCase (Lower is next)
    				//	{-1, 0, -1}  LowerCase (Upper, Title are previous)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer_test.go

    							deltas[i] += *workLeft
    							work -= *workLeft
    							*workLeft = 0
    						}
    					}
    					return deltas[0], deltas[1], deltas[2]
    				}
    				var (
    					gcDuration          int64
    					assistTime          int64
    					bytesAllocatedBlack int64
    				)
    				for heapScanWorkLeft+stackScanWorkLeft+globalsScanWorkLeft > 0 {
    					// Simulate GC assist pacing.
    					//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/hash/HashTestUtils.java

              int key2 = key1 ^ delta;
    
              // get hashes
              int hash1 = function.hashInt(key1).asInt();
              int hash2 = function.hashInt(key2).asInt();
    
              // this 2-bit candidate delta is not a characteristic
              // if deltas are different
              if ((hash1 ^ hash2) != delta) {
                diff = true;
                continue;
              }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  7. src/runtime/mstats.go

    	}
    }
    
    // heapStatsDelta contains deltas of various runtime memory statistics
    // that need to be updated together in order for them to be kept
    // consistent with one another.
    type heapStatsDelta struct {
    	// Memory stats.
    	committed       int64 // byte delta of memory committed
    	released        int64 // byte delta of released memory generated
    	inHeap          int64 // byte delta of memory placed in the heap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. pilot/pkg/features/experimental.go

    		"If this is set to true, istiod will create and manage its default GatewayClasses").Get()
    
    	DeltaXds = env.Register("ISTIO_DELTA_XDS", true,
    		"If enabled, pilot will only send the delta configs as opposed to the state of the world on a "+
    			"Resource Request. This feature uses the delta xds api, but does not currently send the actual deltas.").Get()
    
    	EnableQUICListeners = env.Register("PILOT_ENABLE_QUIC_LISTENERS", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster.go

    		if dir == model.TrafficDirectionInbound {
    			// Append all inbound clusters because in both stow/delta we always build all inbound clusters.
    			// In reality, the delta building is only for outbound clusters. We need to revist here once we support delta for inbound.
    			// So deletedClusters.Difference(builtClusters) would give us the correct deleted inbound clusters.
    			deletedClusters.Insert(cluster)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        vb.baseVal.x = u.x - (u.x - vb.baseVal.x) * (w2 / w1);
        vb.baseVal.y = u.y - (u.y - vb.baseVal.y) * (h2 / h1);
      }
    
      function handleWheel(e) {
        if (e.deltaY == 0) return;
        // Change scale factor by 1.1 or 1/1.1
        rescale(currentScale * (e.deltaY < 0 ? 1.1 : (1/1.1)),
                toSvg(e.offsetX, e.offsetY));
      }
    
      function setMode(m) {
        mode = m;
        touchid = null;
        touchid2 = null;
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top