Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for pause_end (0.54 sec)

  1. src/runtime/mgc.go

    	atomic.Store64(&memstats.last_gc_nanotime, uint64(now)) // monotonic time for us
    	memstats.pause_ns[memstats.numgc%uint32(len(memstats.pause_ns))] = uint64(work.pauseNS)
    	memstats.pause_end[memstats.numgc%uint32(len(memstats.pause_end))] = uint64(unixNow)
    	memstats.pause_total_ns += uint64(work.pauseNS)
    
    	// Accumulate CPU stats.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. cmd/admin-server-info.go

    		PauseQuantiles: make([]time.Duration, 5),
    	}
    	debug.ReadGCStats(&gcStats)
    	// Truncate GC stats to max 5 entries.
    	if len(gcStats.PauseEnd) > 5 {
    		gcStats.PauseEnd = gcStats.PauseEnd[len(gcStats.PauseEnd)-5:]
    	}
    	if len(gcStats.Pause) > 5 {
    		gcStats.Pause = gcStats.Pause[len(gcStats.Pause)-5:]
    	}
    
    	props := madmin.ServerProperties{
    		Endpoint: addr,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/runtime/debug/garbage.go

    	n /= 2 // buffer holds pauses and end times
    	stats.Pause = stats.Pause[:n]
    
    	if cap(stats.PauseEnd) < maxPause {
    		stats.PauseEnd = make([]time.Time, 0, maxPause)
    	}
    	stats.PauseEnd = stats.PauseEnd[:0]
    	for _, ns := range stats.Pause[n : n+n] {
    		stats.PauseEnd = append(stats.PauseEnd, time.Unix(0, int64(ns)))
    	}
    
    	if len(stats.PauseQuantiles) > 0 {
    		if n == 0 {
    			clear(stats.PauseQuantiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // `sparse_begin`, `sparse_end`, and `sparse_strides` ranges and `begin_mask`,
    // `end_mask`, `ellipsis_mask` , `new_axis_mask` and `shrink_axis_mask` masks.
    // Updates the result back to `input_shape`.
    static void CalculateSlicedShapeFromSparseIndices(
        MutableArrayRef<int64_t> input_shape, ArrayRef<int64_t> sparse_begin,
        ArrayRef<int64_t> sparse_end, ArrayRef<int64_t> sparse_strides,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof.go

    	fmt.Fprintf(w, "# OtherSys = %d\n", s.OtherSys)
    
    	fmt.Fprintf(w, "# NextGC = %d\n", s.NextGC)
    	fmt.Fprintf(w, "# LastGC = %d\n", s.LastGC)
    	fmt.Fprintf(w, "# PauseNs = %d\n", s.PauseNs)
    	fmt.Fprintf(w, "# PauseEnd = %d\n", s.PauseEnd)
    	fmt.Fprintf(w, "# NumGC = %d\n", s.NumGC)
    	fmt.Fprintf(w, "# NumForcedGC = %d\n", s.NumForcedGC)
    	fmt.Fprintf(w, "# GCCPUFraction = %v\n", s.GCCPUFraction)
    	fmt.Fprintf(w, "# DebugGC = %v\n", s.DebugGC)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

      // requant, so only overwrite the first if that is not the case.
      const int num_uses = std::distance(dequant_op.getResult().use_begin(),
                                         dequant_op.getResult().use_end());
    
      // Whether to replace quantization params of the first dequantize op
      // after the quantized value is produced.
      // If there is a use other than the requantize states, then we can't clobber.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

        [(ShapeMatchesReduceWithKeepAxes $input, $axes, $shape),
         (HasOneUse $reduce)]>;
    }
    
    
    def IsSame : Constraint<CPred<"$0 == $1">>;
    def HasTwoUse : Constraint<CPred<
      "std::distance($0.use_begin(), $0.use_end()) == 2">>;
    def AxesIsLastDimension : Constraint<CPred<
      "$0.cast<DenseIntElementsAttr>().getNumElements() == 1 && "
      "($0.cast<DenseIntElementsAttr>().getValues<APInt>()[0] == "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
Back to top