Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 114 for haverace (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/update_control_dependencies.cc

    namespace mlir {
    namespace tf_executor {
    namespace {
    
    // Comparator for `OpsInReverseProgramOrder`.
    struct IsAfterInBlock {
      bool operator()(Operation* op, Operation* other_op) const {
        // This function has an average complexity of O(1).
        return other_op->isBeforeInBlock(op);
      }
    };
    
    #define GEN_PASS_DEF_EXECUTORUPDATECONTROLDEPENDENCIESPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 07:53:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. src/runtime/stack.go

    	// https://docs.google.com/document/d/1YDlGIdVTPnmUiTAavlZxBI1d9pwGQgZT7IKFKlIXohQ/edit?usp=sharing
    	// The basic algorithm is to track the average size of stacks
    	// and start goroutines with stack equal to that average size.
    	// Starting at the average size uses at most 2x the space that
    	// an ideal algorithm would have used.
    	// This is just a heuristic to avoid excessive stack growth work
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    		Name:      avgLinkLatency,
    		Help:      "Average replication link latency in milliseconds",
    		Type:      gaugeMetric,
    	}
    }
    
    func getClusterReplAvgQueuedOperationsMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: replicationSubsystem,
    		Name:      avgInQueueCount,
    		Help:      "Average number of objects queued for replication since server uptime",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

                th().colspan("3").end();
                final String colspanForField = String.valueOf(testHistory.getScenarioCount() * getColumnsForSamples());
                th().colspan(colspanForField).text("Average build time").end();
                th().colspan("8").text("Details").end();
                end();
                tr();
                th().text("Date").end();
                th().text("Branch").end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. src/sync/pool_test.go

    	}
    
    	// Get pause time stats.
    	slices.Sort(pauses)
    	var total uint64
    	for _, ns := range pauses {
    		total += ns
    	}
    	// ns/op for this benchmark is average STW time.
    	b.ReportMetric(float64(total)/float64(b.N), "ns/op")
    	b.ReportMetric(float64(pauses[len(pauses)*95/100]), "p95-ns/STW")
    	b.ReportMetric(float64(pauses[len(pauses)*50/100]), "p50-ns/STW")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    JetBrains offers several licensing options that allow you to scale TeamCity to your needs.
    In this setup, we'll use TeamCity Professional, a free fully functional edition suitable for average projects.
    In the course of this section, you'll learn how to set up TeamCity, create a build configuration to pull the source code from GitHub and run the Gradle build.
    
    === Install and start TeamCity
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/horizontal.go

    	}
    
    	if target.AverageUtilization == nil {
    		errMsg := "invalid resource metric source: neither an average utilization target nor an average value (usage) target was set"
    		return 0, nil, time.Time{}, "", condition, fmt.Errorf(errMsg)
    	}
    
    	targetUtilization := *target.AverageUtilization
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

      // Next ID: 7
      enum CalibrationMethod {
        CALIBRATION_METHOD_UNSPECIFIED = 0;
        // Use the min, max values of all sample datasets.
        CALIBRATION_METHOD_MIN_MAX = 1;
        // Use the average of min, max values in each sample dataset.
        CALIBRATION_METHOD_AVERAGE_MIN_MAX = 2;
        // Use the min/max percentile value of histogram.
        CALIBRATION_METHOD_HISTOGRAM_PERCENTILE = 3;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. src/encoding/json/bench_test.go

    							cachedTypeFields(t)
    						}
    						wg.Done()
    					}(j)
    				}
    				wg.Wait()
    			}
    		})
    	}
    
    	// HitTypes tests the performance of repeated cache hits.
    	// This measures the average time of each cache lookup.
    	for nt := 1; nt <= maxTypes; nt *= 10 {
    		// Pre-warm a cache of size nt.
    		clearCache()
    		for _, t := range types[:nt] {
    			cachedTypeFields(t)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	stats.highWatermark = obs.Max
    	if obs.Duration <= 0 {
    		return
    	}
    	if math.IsNaN(obs.Deviation) {
    		obs.Deviation = 0
    	}
    	stats.avg = obs.Average
    	stats.stdDev = obs.Deviation
    	envelope := obs.Average + obs.Deviation
    	stats.smoothed = math.Max(envelope, seatDemandSmoothingCoefficient*stats.smoothed+(1-seatDemandSmoothingCoefficient)*envelope)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
Back to top