/external/tensorflow/tensorflow/python/distribute/ |
D | vars_test.py | 107 for update, aggregation, cross_replica in options: 111 if (not cross_replica and aggregation == 117 aggregation=aggregation) 130 2., aggregation=variables_lib.VariableAggregation.MEAN) 132 -2., aggregation=variables_lib.VariableAggregation.MEAN) 154 for update, aggregation, cross_replica in options: 158 if aggregation == variables_lib.VariableAggregation.SUM: 163 aggregation=aggregation) 206 for update, aggregation, cross_replica in options: 217 aggregation=aggregation) [all …]
|
D | values_test.py | 413 aggregation=[ 422 def testExtendsVariable(self, distribution, synchronization, aggregation): argument 425 1., synchronization=synchronization, aggregation=aggregation) 428 def testCheckpointing(self, distribution, synchronization, aggregation, mode): argument 439 aggregation=aggregation) 461 def testTraceback(self, distribution, synchronization, aggregation): argument 470 aggregation=aggregation) 478 aggregation=aggregation) 480 def testSelectReplica(self, distribution, synchronization, aggregation): argument 483 1., synchronization=synchronization, aggregation=aggregation) [all …]
|
D | mirrored_variable_test.py | 213 v0 = variable_scope.variable(1.0, name="var0", aggregation=None) 222 aggregation=variable_scope.VariableAggregation.SUM) 227 aggregation=variable_scope.VariableAggregation.MEAN) 244 self.assertEqual(variable_scope.VariableAggregation.SUM, v2.aggregation) 247 self.assertEqual(variable_scope.VariableAggregation.MEAN, v3.aggregation) 260 aggregation=variable_scope.VariableAggregation.SUM) 264 aggregation=variable_scope.VariableAggregation.MEAN) 282 self.assertEqual(variable_scope.VariableAggregation.SUM, v2.aggregation) 286 v3.aggregation) 291 aggregation = variable_scope.VariableAggregation.ONLY_FIRST_REPLICA [all …]
|
D | reduce_util.py | 41 def from_variable_aggregation(aggregation): argument 47 reduce_op = mapping.get(aggregation) 50 "`tf.distribute.ReduceOp` type" % aggregation)
|
D | distribute_utils.py | 271 aggregation = kwargs.get("aggregation", vs.VariableAggregation.NONE) 273 if aggregation not in (vs.VariableAggregation.NONE, 278 (aggregation, kwargs["name"])) 279 return aggregation 296 aggregation = _validate_aggregation(kwargs) 309 var_policy = var_policy_cls(aggregation=aggregation) 311 result = var_cls(strategy, value_list, aggregation, var_policy=var_policy) 314 result = var_cls(strategy, value_list, aggregation)
|
D | values_util.py | 117 def get_on_read_restore_ops(var, tensor, aggregation): argument 122 if aggregation == vs.VariableAggregation.SUM: 188 if var.aggregation == vs.VariableAggregation.SUM: 200 if var.aggregation == vs.VariableAggregation.SUM: 217 if var.aggregation == vs.VariableAggregation.SUM: 325 def apply_aggregation(strategy, value, aggregation, destinations): argument 326 if aggregation == vs.VariableAggregation.ONLY_FIRST_REPLICA: 330 reduce_op = reduce_util.ReduceOp.from_variable_aggregation(aggregation)
|
D | values.py | 48 if var.aggregation == vs.VariableAggregation.NONE: 60 if var.aggregation == vs.VariableAggregation.MEAN and ( 69 v = values_util.apply_aggregation(strategy, value, var.aggregation, var) 445 def __init__(self, strategy, values, aggregation, var_policy=None): argument 446 if (aggregation == variables_lib.VariableAggregation.MEAN and 453 self._aggregation = aggregation 514 aggregation=self._aggregation, 609 def aggregation(self): member in DistributedVariable 1045 op_name="scatter_min", aggregation=self._aggregation)) 1054 op_name="scatter_max", aggregation=self._aggregation)) [all …]
|
/external/autotest/frontend/tko/preconfigs/metrics/ |
D | perf | 8 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 …]
|
D | kernel_compare | 12 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/ |
D | ViewData.java | 245 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 …]
|
D | View.java | 124 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/ |
D | SeriesSelector.java | 43 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/ |
D | IntervalBucket.java | 42 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()
|
D | MutableViewData.java | 354 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/ |
D | variable_scope.py | 326 aggregation=VariableAggregation.NONE): argument 474 aggregation=VariableAggregation.NONE): argument 499 aggregation=aggregation) 520 aggregation=aggregation) 543 aggregation=aggregation) 545 synchronization, aggregation, trainable = ( 547 synchronization, aggregation, trainable, name)) 567 "aggregation": aggregation, 591 aggregation=aggregation) 608 aggregation=VariableAggregation.NONE): argument [all …]
|
D | variables.py | 151 def validate_synchronization_aggregation_trainable(synchronization, aggregation, argument 154 if aggregation is None: 155 aggregation = VariableAggregation.NONE 157 if not isinstance(aggregation, 160 aggregation = VariableAggregationV2(aggregation) 164 aggregation, name)) 176 return synchronization, aggregation, trainable 196 aggregation=VariableAggregation.NONE, argument 204 if aggregation is None: 205 aggregation = VariableAggregation.NONE [all …]
|
D | resource_variable_ops.py | 344 aggregation=None, argument 405 synchronization, aggregation, trainable = ( 407 synchronization, aggregation, trainable, name)) 410 self._aggregation = aggregation 507 aggregation=self.aggregation) 610 def aggregation(self): member in BaseResourceVariable 766 var_def.aggregation = self.aggregation.value 1503 aggregation=None, argument 1586 aggregation=aggregation, 1599 aggregation=None, argument [all …]
|
/external/opencensus-java/exporters/stats/stackdriver/src/main/java/io/opencensus/exporter/stats/stackdriver/ |
D | StackdriverExportUtils.java | 258 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/tcpdump/tests/ |
D | lldp_mudurl-v.out | 21 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
|
D | lldp_mudurl-vv.out | 37 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/tensorflow/tensorflow/lite/python/ |
D | op_hint.py | 559 def __init__(self, aggregation): argument 561 self.aggregation = aggregation 579 if self.aggregation == OpHint.AGGREGATE_FIRST: 581 elif self.aggregation == OpHint.AGGREGATE_LAST: 583 elif self.aggregation == OpHint.AGGREGATE_STACK: 587 self.aggregation) 610 if (self.aggregation == OpHint.AGGREGATE_FIRST) or ( 611 self.aggregation == OpHint.AGGREGATE_LAST): 613 if len(flattened) == 1 and self.aggregation != OpHint.AGGREGATE_STACK: 644 if (self.aggregation == OpHint.AGGREGATE_FIRST) or ( [all …]
|
/external/opencensus-java/exporters/stats/signalfx/src/main/java/io/opencensus/exporter/stats/signalfx/ |
D | SignalFxSessionAdaptor.java | 91 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/ |
D | ViewDataTest.java | 242 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/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/stats/ |
D | MutableAggregationTest.java | 123 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/ |
D | PrometheusExportUtils.java | 132 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;
|