Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 351 for calculations (0.19 sec)

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

    class GreedyRematTest : public testing::Test {
     protected:
      // A Rematerializer for a graph whose memory profile is a sequence of
      // "rainbows" due to nested ops (similar to what happens in backwards pass
      // gradient calculations.)
      class RainbowRemat : public Rematerializer {
       public:
        // `sizes` is a vector of vector of sizes.  Each sizes vector of length n
        // generates a `rainbow` profile of the SSA form
        //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    type CostEstimator struct {
    	// SizeEstimator provides a CostEstimator.EstimateSize that this CostEstimator will delegate size estimation
    	// calculations to if the size is not well known (i.e. a constant).
    	SizeEstimator checker.CostEstimator
    }
    
    func (l *CostEstimator) CallCost(function, overloadId string, args []ref.Val, result ref.Val) *uint64 {
    	switch function {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. src/time/time.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package time provides functionality for measuring and displaying time.
    //
    // The calendrical calculations always assume a Gregorian calendar, with
    // no leap seconds.
    //
    // # Monotonic Clocks
    //
    // Operating systems provide both a “wall clock,” which is subject to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. src/math/big/natdiv.go

    For example, no rationale whatsoever is given for the calculation that extends
    q̂ from a 2-by-1 to a 3-by-2 guess, nor why it reduces the error bound.
    The proof that the calculation even has the desired effect is left to exercises.
    The solutions to those exercises provided at the back of the book are entirely
    calculations, still with no explanation as to what is going on or how you would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  5. src/time/zoneinfo.go

    // depending on whether daylight savings time is in use at the time instant.
    //
    // Location is used to provide a time zone in a printed Time value and for
    // calculations involving intervals that may cross daylight savings time
    // boundaries.
    type Location struct {
    	name string
    	zone []zone
    	tx   []zoneTrans
    
    	// The tzdata information can be followed by a string that describes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. src/runtime/profbuf.go

    	// worry about uint32 wraparound changing the effective position
    	// within the buffers. We store 30 bits of count; limiting to 28
    	// gives us some room for intermediate calculations.
    	if bufwords >= 1<<28 || tags >= 1<<28 {
    		throw("newProfBuf: buffer too large")
    	}
    	var i int
    	for i = 1; i < bufwords; i <<= 1 {
    	}
    	bufwords = i
    	for i = 1; i < tags; i <<= 1 {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== SourceTask is no longer sensitive to empty directories
    
    Previously, empty directories would be taken into account during up-to-date checks and build cache key calculations for the sources declared in `SourceTask`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    It is sometimes the case, though, that certain properties have a runtime impact, while others do not.
    If a property is changing that does not have an impact on the runtime classpath, it may be desirable to exclude it from up-to-date checks and <<build_cache.adoc#build_cache,build cache>> key calculations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster.go

    	"istio.io/istio/pkg/security"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // deltaConfigTypes are used to detect changes and trigger delta calculations. When config updates has ONLY entries
    // in this map, then delta calculation is triggered.
    var deltaConfigTypes = sets.New(kind.ServiceEntry.String(), kind.DestinationRule.String())
    
    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/compile/internal/types2/named.go

    // are constructed exactly once and so that we do not access their details too
    // soon.
    //
    // We achieve this by tracking state with an atomic state variable, and
    // guarding potentially concurrent calculations with a mutex. At any point in
    // time this state variable determines which data on N may be accessed. As
    // state monotonically progresses, any data available at state M may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top