Home
last modified time | relevance | path

Searched refs:times_called (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/lite/tools/accuracy/
Deval_pipeline_builder_test.cc39 int times_called() const { return called_count_; } in times_called() function in tensorflow::metrics::__anonf1d7202b0111::IdentityStage
63 int times_called() const { return called_count_; } in times_called() function in tensorflow::metrics::__anonf1d7202b0111::FailingStage
137 EXPECT_EQ(1, input_stage.times_called()); in TEST()
138 EXPECT_EQ(0, preprocess_stage.times_called()); in TEST()
139 EXPECT_EQ(0, run_model_stage.times_called()); in TEST()
162 EXPECT_EQ(1, input_stage.times_called()); in TEST()
163 EXPECT_EQ(1, preprocess_stage.times_called()); in TEST()
164 EXPECT_EQ(0, run_model_stage.times_called()); in TEST()
187 EXPECT_EQ(1, input_stage.times_called()); in TEST()
188 EXPECT_EQ(1, preprocess_stage.times_called()); in TEST()
[all …]
/external/tensorflow/tensorflow/core/util/
Dstats_calculator.cc76 const int64_t times_called = detail.times_called / num_runs(); in ColumnString() local
86 InitField(stream, 9) << times_called; in ColumnString()
157 (*node_type_map_times_called)[node_type] += detail.times_called / run_count; in ComputeStatsByType()
292 detail->times_called++; in AddNodeStats()
Dstats_calculator_test.cc53 EXPECT_EQ(1, detail.times_called); in TEST()
65 EXPECT_EQ(2, detail.times_called); in TEST()
Dstats_calculator.h163 int64_t times_called; member
/external/tensorflow/tensorflow/python/keras/
Dbackend_test.py1667 self.times_called = 0
1671 self.times_called += 1
1689 self.assertEqual(callback.times_called, 1)