Home
last modified time | relevance | path

Searched refs:aggregation (Results 1 – 25 of 646) sorted by relevance

12345678910>>...26

/external/autotest/frontend/tko/preconfigs/metrics/
Dperf8 aggregation[0]: AVG
17 aggregation[1]: AVG
26 aggregation[2]: AVG
35 aggregation[3]: AVG
44 aggregation[4]: AVG
59 aggregation[0]: AVG
68 aggregation[1]: AVG
77 aggregation[2]: AVG
86 aggregation[3]: AVG
95 aggregation[4]: AVG
[all …]
Dkernel_compare12 aggregation[0]: AVG
19 aggregation[1]: AVG
35 aggregation[0]: AVG
42 aggregation[1]: AVG
58 aggregation[0]: AVG
65 aggregation[1]: AVG
/external/opencensus-java/api/src/main/java/io/opencensus/stats/
DViewData.java245 final Aggregation aggregation, final AggregationData aggregationData, final Measure measure) {
246 aggregation.match(
255 aggregationData instanceof SumDataDouble, aggregation, aggregationData);
263 aggregationData instanceof SumDataLong, aggregation, aggregationData);
275 aggregationData instanceof CountData, aggregation, aggregationData);
283 aggregationData instanceof DistributionData, aggregation, aggregationData);
296 aggregation,
305 aggregationData instanceof LastValueDataLong, aggregation, aggregationData);
322 aggregation,
332 boolean isValid, Aggregation aggregation, AggregationData aggregationData) {
[all …]
DView.java124 Aggregation aggregation, in create() argument
133 name, description, measure, aggregation, Collections.unmodifiableList(tagKeys), window); in create()
152 Aggregation aggregation, in create() argument
157 name, description, measure, aggregation, columns, AggregationWindow.Cumulative.create()); in create()
/external/autotest/frontend/client/src/autotest/tko/
DSeriesSelector.java43 private ExtendedListBox aggregation = new ExtendedListBox(); field in SeriesSelector.Series
61 aggregation.addItem("AVG", "AVG("); in Series()
62 aggregation.addItem("COUNT (DISTINCT)", "COUNT(DISTINCT "); in Series()
63 aggregation.addItem("MIN", "MIN("); in Series()
64 aggregation.addItem("MAX", "MAX("); in Series()
65 aggregation.setSelectedIndex(0); in Series()
66 aggregation.addChangeHandler(new ChangeHandler() { in Series()
80 aggregationPanel.add(aggregation); in Series()
108 return aggregation.getSelectedValue(); in getAggregation()
134 args.put(parameterString("aggregation", index), aggregation.getSelectedName()); in addToHistory()
[all …]
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
DIntervalBucket.java42 private final Aggregation aggregation; field in IntervalBucket
47 IntervalBucket(Timestamp start, Duration duration, Aggregation aggregation, Measure measure) { in IntervalBucket() argument
51 this.aggregation = checkNotNull(aggregation, "Aggregation"); in IntervalBucket()
71 tagValues, RecordUtils.createMutableAggregation(aggregation, measure)); in record()
DMutableViewData.java354 Aggregation aggregation = super.view.getAggregation(); in combineBucketsAndGetAggregationMap() local
356 putBucketsIntoMultiMap(shallowCopy, multimap, aggregation, measure, now); in combineBucketsAndGetAggregationMap()
358 aggregateOnEachTagValueList(multimap, aggregation, measure); in combineBucketsAndGetAggregationMap()
367 Aggregation aggregation, in putBucketsIntoMultiMap() argument
380 head.getTagValueAggregationMap(), multimap, aggregation, measure, fractionHead); in putBucketsIntoMultiMap() local
400 Aggregation aggregation, in putFractionalMutableAggregationsToMultiMap() argument
405 MutableAggregation fractionalMutableAgg = createMutableAggregation(aggregation, measure); in putFractionalMutableAggregationsToMultiMap()
414 Multimap<T, MutableAggregation> multimap, Aggregation aggregation, Measure measure) { in aggregateOnEachTagValueList() argument
418 MutableAggregation combinedAggregation = createMutableAggregation(aggregation, measure); in aggregateOnEachTagValueList()
/external/tensorflow/tensorflow/python/ops/
Dvariable_scope.py303 aggregation=VariableAggregation.NONE): argument
451 aggregation=VariableAggregation.NONE): argument
476 aggregation=aggregation)
497 aggregation=aggregation)
520 aggregation=aggregation)
522 synchronization, aggregation, trainable = (
524 synchronization, aggregation, trainable, name))
544 "aggregation": aggregation,
568 aggregation=aggregation)
585 aggregation=VariableAggregation.NONE): argument
[all …]
Dvariables.py150 def validate_synchronization_aggregation_trainable(synchronization, aggregation, argument
153 if aggregation is None:
154 aggregation = VariableAggregation.NONE
156 if not isinstance(aggregation,
159 aggregation = VariableAggregationV2(aggregation)
163 aggregation, name))
175 return synchronization, aggregation, trainable
195 aggregation=VariableAggregation.NONE, argument
203 if aggregation is None:
204 aggregation = VariableAggregation.NONE
[all …]
Dresource_variable_ops.py341 aggregation=None, argument
402 synchronization, aggregation, trainable = (
404 synchronization, aggregation, trainable, name))
407 self._aggregation = aggregation
584 def aggregation(self): member in BaseResourceVariable
729 var_def.aggregation = self.aggregation.value
1340 aggregation=None, argument
1424 aggregation=aggregation,
1437 aggregation=None, argument
1500 synchronization, aggregation, trainable = (
[all …]
/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/
Dextract_ophint.cc123 void AddInput(int index, Operation* op, StringRef aggregation, in AddInput()
128 operand.aggregation = aggregation; in AddInput()
137 void AddOutput(int index, Operation* op, llvm::StringRef aggregation, in AddOutput()
142 operand.aggregation = aggregation; in AddOutput()
154 if (kv.second.aggregation == kStrategyFirst) { in GetAllInputOps()
179 if (aggregated_operand.aggregation != kStrategyStack) { in GetAllInUseOutputOps()
202 if (operand.aggregation == kStrategyStack) { in GetAggregatedInputs()
265 } else if (operand.aggregation == kStrategyLast) { in GetAggregatedInputs()
289 if (operand.aggregation == kStrategyStack) { in GetAggregatedOutputTypes()
302 } else if (operand.aggregation == kStrategyLast) { in GetAggregatedOutputTypes()
[all …]
/external/tensorflow/tensorflow/python/distribute/
Dmirrored_variable_test.py244 v0 = variable_scope.variable(1.0, name="var0", aggregation=None)
253 aggregation=variable_scope.VariableAggregation.SUM)
258 aggregation=variable_scope.VariableAggregation.MEAN)
275 self.assertEqual(variable_scope.VariableAggregation.SUM, v2.aggregation)
278 self.assertEqual(variable_scope.VariableAggregation.MEAN, v3.aggregation)
291 aggregation=variable_scope.VariableAggregation.SUM)
295 aggregation=variable_scope.VariableAggregation.MEAN)
313 self.assertEqual(variable_scope.VariableAggregation.SUM, v2.aggregation)
317 v3.aggregation)
322 aggregation = variable_scope.VariableAggregation.ONLY_FIRST_REPLICA
[all …]
Dreduce_util.py41 def from_variable_aggregation(aggregation): argument
47 reduce_op = mapping.get(aggregation)
50 "`tf.distribute.ReduceOp` type" % aggregation)
Dvalues_test.py576 aggregation=variable_scope.VariableAggregation.MEAN,
606 aggregation=variable_scope.VariableAggregation.SUM,
763 aggregation=variables_lib.VariableAggregation.ONLY_FIRST_REPLICA)
789 1, aggregation=variables_lib.VariableAggregation.MEAN)
842 replica_local.aggregation)
1104 for update, aggregation, cross_replica in options:
1109 aggregation=aggregation)
1140 for update, aggregation, cross_replica in options:
1145 aggregation=aggregation)
1159 aggregation=variables_lib.VariableAggregation.SUM)
[all …]
Dvalues.py686 def _apply_aggregation(strategy, value, aggregation, destinations): argument
687 if aggregation == vs.VariableAggregation.ONLY_FIRST_REPLICA:
691 reduce_op = reduce_util.ReduceOp.from_variable_aggregation(aggregation)
758 aggregation = kwargs.pop("aggregation", vs.VariableAggregation.NONE)
760 if aggregation not in (vs.VariableAggregation.NONE,
765 (aggregation, kwargs["name"]))
776 result = var_cls(strategy, value_list, aggregation)
807 def __init__(self, strategy, values, aggregation): argument
809 self._aggregation = aggregation
879 def aggregation(self): member in MirroredVariable
[all …]
Dparameter_server_strategy_test.py148 aggregation=variable_scope.VariableAggregation.SUM)
162 aggregation=variable_scope.VariableAggregation.SUM)
172 aggregation=variable_scope.VariableAggregation.SUM)
230 aggregation=variable_scope.VariableAggregation.SUM,
243 aggregation=variable_scope.VariableAggregation.SUM,
303 aggregation=variable_scope.VariableAggregation.SUM)
315 aggregation=variable_scope.VariableAggregation.SUM)
326 aggregation=variable_scope.VariableAggregation.SUM)
384 aggregation=variable_scope.VariableAggregation.SUM)
387 aggregation=variable_scope.VariableAggregation.SUM)
[all …]
/external/opencensus-java/exporters/stats/stackdriver/src/main/java/io/opencensus/exporter/stats/stackdriver/
DStackdriverExportUtils.java258 static MetricKind createMetricKind(View.AggregationWindow window, Aggregation aggregation) { in createMetricKind() argument
259 if (aggregation instanceof LastValue) { in createMetricKind()
271 static String createUnit(Aggregation aggregation, final Measure measure) { in createUnit() argument
272 if (aggregation instanceof Aggregation.Count) { in createUnit()
281 Aggregation aggregation, final Measure measure) { in createValueType() argument
282 return aggregation.match( in createValueType()
360 Aggregation aggregation) { in createPoint() argument
362 builder.setInterval(createTimeInterval(windowData, aggregation)); in createPoint()
363 builder.setValue(createTypedValue(aggregation, aggregationData)); in createPoint()
370 ViewData.AggregationWindowData windowData, final Aggregation aggregation) { in createTimeInterval() argument
[all …]
/external/tensorflow/tensorflow/lite/python/
Dop_hint.py546 def __init__(self, aggregation): argument
548 self.aggregation = aggregation
566 if self.aggregation == OpHint.AGGREGATE_FIRST:
568 elif self.aggregation == OpHint.AGGREGATE_LAST:
570 elif self.aggregation == OpHint.AGGREGATE_STACK:
574 "Invalid aggregation type %r specified" % self.aggregation)
597 if (self.aggregation == OpHint.AGGREGATE_FIRST) or (
598 self.aggregation == OpHint.AGGREGATE_LAST):
600 if len(flattened) == 1 and self.aggregation != OpHint.AGGREGATE_STACK:
631 if (self.aggregation == OpHint.AGGREGATE_FIRST) or (
[all …]
/external/tcpdump/tests/
Dlldp_mudurl-v.out21 Link aggregation Subtype (3)
22 aggregation status [supported], aggregation port ID 0
52 Link aggregation Subtype (3)
53 aggregation status [supported], aggregation port ID 0
Dlldp_mudurl-vv.out37 Link aggregation Subtype (3)
38 aggregation status [supported], aggregation port ID 0
90 Link aggregation Subtype (3)
91 aggregation status [supported], aggregation port ID 0
/external/opencensus-java/exporters/stats/signalfx/src/main/java/io/opencensus/exporter/stats/signalfx/
DSignalFxSessionAdaptor.java91 Aggregation aggregation, View.AggregationWindow window) { in getMetricTypeForAggregation() argument
92 if (aggregation instanceof Aggregation.Mean || aggregation instanceof Aggregation.LastValue) { in getMetricTypeForAggregation()
94 } else if (aggregation instanceof Aggregation.Count || aggregation instanceof Aggregation.Sum) { in getMetricTypeForAggregation()
/external/opencensus-java/api/src/test/java/io/opencensus/stats/
DViewDataTest.java242 private static View createView(Aggregation aggregation) { in createView() argument
243 return createView(aggregation, MEASURE_DOUBLE); in createView()
246 private static View createView(Aggregation aggregation, Measure measure) { in createView() argument
247 return View.create(NAME, DESCRIPTION, measure, aggregation, TAG_KEYS, CUMULATIVE); in createView()
254 Aggregation aggregation = view.getAggregation(); in aggregationAndAggregationDataMismatch() local
260 + aggregation.getClass().getSimpleName() in aggregationAndAggregationDataMismatch()
/external/tensorflow/tensorflow/python/keras/engine/
Dbase_layer.py325 aggregation=tf_variables.VariableAggregation.NONE, argument
449 aggregation=aggregation,
1132 def add_metric(self, value, aggregation=None, name=None): argument
1149 if aggregation is not None and aggregation != 'mean':
1152 'You provided aggregation=`%s`' % aggregation)
1179 self._symbolic_add_metric(value, aggregation, name)
1181 self._eager_add_metric(value, aggregation, name)
1190 self._symbolic_add_metric(value, aggregation, name)
1200 self._graph_network_add_metric(value, aggregation, name)
1915 def _eager_add_metric(self, value, aggregation=None, name=None): argument
[all …]
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/stats/
DMutableAggregationTest.java123 for (MutableAggregation aggregation : aggregations) { in testAdd()
124 aggregation.add(value, Collections.<String, String>emptyMap(), TIMESTAMP); in testAdd()
212 for (MutableAggregation aggregation : aggregations1) { in testCombine_SumCountMean()
213 aggregation.add(val, Collections.<String, String>emptyMap(), TIMESTAMP); in testCombine_SumCountMean()
217 for (MutableAggregation aggregation : aggregations2) { in testCombine_SumCountMean()
218 aggregation.add(val, Collections.<String, String>emptyMap(), TIMESTAMP); in testCombine_SumCountMean()
/external/opencensus-java/exporters/stats/prometheus/src/main/java/io/opencensus/exporter/stats/prometheus/
DPrometheusExportUtils.java132 static Type getType(Aggregation aggregation, View.AggregationWindow window) { in getType() argument
136 return aggregation.match( in getType()
160 final Aggregation aggregation) {
198 Distribution distribution = (Distribution) aggregation;

12345678910>>...26