Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 617 for peak (0.04 sec)

  1. cmd/bucket-replication-metrics.go

    }
    
    func (rx *XferStats) merge(o XferStats) XferStats {
    	curr := calcAvg(rx.curr(), o.curr(), rx.N, o.N)
    	peak := rx.Peak
    	if o.Peak > peak {
    		peak = o.Peak
    	}
    	if curr > peak {
    		peak = curr
    	}
    	return XferStats{
    		Avg:     calcAvg(rx.Avg, o.Avg, rx.N, o.N),
    		Peak:    peak,
    		Curr:    curr,
    		measure: rx.measure,
    		N:       rx.N + o.N,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. cmd/bucket-stats.go

    		totpeak = math.Max(math.Max(tot.Peak, totpeak), tot.Curr)
    		lpeak = math.Max(math.Max(v[Large].Peak, lpeak), v[Large].Curr)
    		speak = math.Max(math.Max(v[Small].Peak, speak), v[Small].Curr)
    		if lpeak > 0 || speak > 0 {
    			count++
    		}
    	}
    	if count > 0 {
    		lrg := XferStats{
    			Avg:  lavg / float64(count),
    			Curr: lcurr / float64(count),
    			Peak: lpeak,
    		}
    		sml := XferStats{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

      return profile;
    }
    
    Rematerializer::MemSpec Rematerializer::GetPeakMemory(
        const RematSpec& remat) const {
      MemSpec peak;
      MapMem([&](const MemSpec& m) { peak = std::max(m, peak, BySize); }, remat);
      return peak;
    }
    
    int Rematerializer::FindBestRematPoint(const int begin, const int end,
                                           const int peak_loc) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. src/math/cmplx/log.go

    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    DEC       -10,+10      7000       8.5e-17     1.9e-17
    //    IEEE      -10,+10     30000       5.0e-15     1.1e-16
    //
    // Larger relative error can be observed for z near 1 +i0.
    // In IEEE arithmetic the peak absolute error is 5.2e-16, rms
    // absolute error 1.0e-16.
    
    // Log returns the natural logarithm of x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

    // (2) Allows for the fast simulation of changes to the peak memory requirement
    //     under rematerialization of intermediate results in the graph
    // (3) Implements a greedy algorithm for finding rematerializations of
    //     intermediate results in that graph to lower peak memory requirements.
    class Rematerializer {
     public:
      Rematerializer() = default;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. src/math/cmplx/sin.go

    //
    // then
    //
    //     w = sin x  cosh y  +  i cos x sinh y.
    //
    // csin(z) = -i csinh(iz).
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    DEC       -10,+10      8400       5.3e-17     1.3e-17
    //    IEEE      -10,+10     30000       3.8e-16     1.0e-16
    // Also tested by csin(casin(z)) = z.
    
    // Sin returns the sine of x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  7. src/math/cmplx/asin.go

    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    DEC       -10,+10      5900       1.3e-16     7.8e-18
    //    IEEE      -10,+10     30000       2.3e-15     8.5e-17
    // The check catan( ctan(z) )  =  z, with |x| and |y| < PI/2,
    // had peak relative error 1.5e-16, rms relative error
    // 2.9e-17.  See also clog().
    
    // Atan returns the inverse tangent of x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  8. src/math/cmplx/tan.go

    // of PI/2. The denominator is evaluated by its Taylor
    // series near these points.
    //
    // ctan(z) = -i ctanh(iz).
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    DEC       -10,+10      5200       7.1e-17     1.6e-17
    //    IEEE      -10,+10     30000       7.2e-16     1.2e-16
    // Also tested by ctan * ccot = 1 and catan(ctan(z))  =  z.
    
    // Tan returns the tangent of x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    * Changes to included builds invalidate all cached results, even when the change would not affect the cached results.
    * The implementation does not attempt to take advantage of the isolation to limit peak memory consumption. Currently, peak memory consumption is a function of how many project need to be configured.
    * All caching is done on the local machine, as for the configuration cache. There is no support for remote caching yet.
    
    == How do I use it?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/log/slog/internal/buffer/buffer.go

    var bufPool = sync.Pool{
    	New: func() any {
    		b := make([]byte, 0, 1024)
    		return (*Buffer)(&b)
    	},
    }
    
    func New() *Buffer {
    	return bufPool.Get().(*Buffer)
    }
    
    func (b *Buffer) Free() {
    	// To reduce peak allocation, return only smaller buffers to the pool.
    	const maxBufferSize = 16 << 10
    	if cap(*b) <= maxBufferSize {
    		*b = (*b)[:0]
    		bufPool.Put(b)
    	}
    }
    
    func (b *Buffer) Reset() {
    	b.SetLen(0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top