Home
last modified time | relevance | path

Searched refs:CounterCell (Results 1 – 10 of 10) sorted by relevance

/external/tensorflow/tensorflow/core/lib/monitoring/
Dcounter.h57 class CounterCell {
59 explicit CounterCell(int64 value) : value_(value) {} in CounterCell() function
60 ~CounterCell() {} in ~CounterCell()
72 TF_DISALLOW_COPY_AND_ASSIGN(CounterCell);
106 CounterCell* GetCell(const Labels&... labels) TF_LOCKS_EXCLUDED(mu_);
142 std::map<LabelArray, CounterCell> cells_ TF_GUARDED_BY(mu_);
151 inline void CounterCell::IncrementBy(const int64 step) { in IncrementBy()
156 inline int64 CounterCell::value() const { return value_; } in value()
169 CounterCell* Counter<NumLabels>::GetCell(const Labels&... labels) in GetCell()
Dmobile_counter.h37 class CounterCell {
39 CounterCell() {} in CounterCell() function
40 ~CounterCell() {} in ~CounterCell()
46 TF_DISALLOW_COPY_AND_ASSIGN(CounterCell);
61 CounterCell* GetCell(const Labels&... labels) { in GetCell()
70 CounterCell default_counter_cell_;
/external/tensorflow/tensorflow/core/framework/
Dmetrics.h34 monitoring::CounterCell* GetTFDataBytesConsumedCounter(const string& name);
40 monitoring::CounterCell* GetTFDataBytesProducedCounter(const string& name);
48 monitoring::CounterCell* GetTFDataBytesReadCounter(const string& name);
54 monitoring::CounterCell* GetTFDataElementsCounter(const string& name);
Dmetrics.cc175 monitoring::CounterCell* GetTFDataBytesConsumedCounter(const string& name) { in GetTFDataBytesConsumedCounter()
179 monitoring::CounterCell* GetTFDataBytesProducedCounter(const string& name) { in GetTFDataBytesProducedCounter()
183 monitoring::CounterCell* GetTFDataBytesReadCounter(const string& name) { in GetTFDataBytesReadCounter()
187 monitoring::CounterCell* GetTFDataElementsCounter(const string& name) { in GetTFDataElementsCounter()
Dmodel.h424 monitoring::CounterCell* const bytes_consumed_counter_;
425 monitoring::CounterCell* const bytes_produced_counter_;
426 monitoring::CounterCell* const num_elements_counter_;
/external/tensorflow/tensorflow/python/eager/
Dmonitoring.py148 class CounterCell(object): class
197 return CounterCell(super(Counter, self).get_cell(*labels))
/external/tensorflow/tensorflow/c/eager/
Dtfe_monitoring_internal.h29 tensorflow::monitoring::CounterCell cell;
/external/tensorflow/tensorflow/core/kernels/data/
Dfixed_length_record_dataset_op.cc145 static monitoring::CounterCell* bytes_counter = in GetNextInternal()
259 static monitoring::CounterCell* bytes_counter = in GetNextInternal()
Dtext_line_dataset_op.cc113 static monitoring::CounterCell* bytes_counter = in GetNextInternal()
Dtf_record_dataset_op.cc128 static monitoring::CounterCell* bytes_counter = in GetNextInternal()