Home
last modified time | relevance | path

Searched refs:graph_name (Results 1 – 18 of 18) sorted by relevance

/external/webrtc/test/testsupport/
Dperf_test.cc52 std::string graph_name; member
67 void AddCounter(const std::string& graph_name, in AddCounter() argument
72 plottable_counters_.push_back({graph_name, trace_name, counter, units}); in AddCounter()
81 auto it = desired_graphs.find(counter.graph_name); in Print()
89 value_stream << R"({"graph_name":")" << counter.graph_name << R"(",)"; in Print()
130 void PrintResult(const std::string& graph_name, in PrintResult() argument
140 PrintResultImpl(graph_name, trace_name, value_stream.str(), std::string(), in PrintResult()
145 void PrintResultMeanAndError(const std::string& graph_name, in PrintResultMeanAndError() argument
155 PrintResultImpl(graph_name, trace_name, value_stream.str(), "{", "}", in PrintResultMeanAndError()
159 void PrintResultList(const std::string& graph_name, in PrintResultList() argument
[all …]
Dperf_test_histogram_writer.cc42 void LogResult(const std::string& graph_name, in LogResult() argument
49 AddSample(graph_name, trace_name, value, units, improve_direction); in LogResult()
51 void LogResultMeanAndError(const std::string& graph_name, in LogResultMeanAndError() argument
62 AddSample(graph_name, trace_name, mean, units, improve_direction); in LogResultMeanAndError()
64 void LogResultList(const std::string& graph_name, in LogResultList() argument
72 AddSample(graph_name, trace_name, value, units, improve_direction); in LogResultList()
98 std::string graph_name = original_graph_name; in AddSample() local
100 graph_name += "_dB"; in AddSample()
102 graph_name += "_fps"; in AddSample()
104 graph_name += "_%"; in AddSample()
[all …]
Dperf_test_result_writer.h28 virtual void LogResult(const std::string& graph_name,
35 const std::string& graph_name,
43 const std::string& graph_name,
/external/autotest/server/site_tests/platform_InitLoginPerfServer/
Dplatform_InitLoginPerfServer.py103 graph=self.graph_name)
161 upload_perf=False, graph_name=None): argument
176 self.graph_name = graph_name
/external/autotest/server/site_tests/video_PlaybackQuality/
Dvideo_PlaybackQuality.py286 graph_name = '%s_%s' % (self._video_description, description)
289 higher_is_better=False, graph=graph_name)
292 higher_is_better=False, graph=graph_name)
295 higher_is_better=False, graph=graph_name)
/external/autotest/server/site_tests/network_WiFi_AttenuatedPerf/
Dnetwork_WiFi_AttenuatedPerf.py106 graph_name = '.'.join(
114 higher_is_better=True, graph=graph_name)
118 graph=graph_name)
/external/tensorflow/tensorflow/lite/toco/
Ddump_graphviz.h25 const std::string& graph_name);
Ddump_graphviz.cc715 std::string GetGraphLabel(const Model& model, const std::string& graph_name) { in GetGraphLabel() argument
728 html += graph_name; in GetGraphLabel()
762 const std::string& graph_name) { in DumpGraphviz() argument
764 AppendF(output_file, kGraphFmt, GetGraphLabel(model, graph_name)); in DumpGraphviz()
/external/autotest/server/cros/ap_configurators/
Dpyauto_utils.py145 def PrintPerfResult(graph_name, series_name, data_point, units, argument
165 waterfall_indicator, graph_name, series_name,
/external/tensorflow/tensorflow/python/debug/lib/
Ddebug_events_writer_test.py114 debugged_graph.graph_name = "MyGraph1"
306 graph_name="graph1")
465 graph_name="graph1")
508 graph_name="graph1")
580 graph_id="graph1", graph_name="graph1")
616 graph_id="graph1", graph_name="graph1")
Ddumping_callback.py209 graph_name=getattr(context, "name", None),
576 graph_name=graph.name if hasattr(graph, "name") else None,
Ddebug_events_reader.py1023 graph_proto.graph_name or None,
/external/angle/src/tests/perf_tests/third_party/perf/
Dangle-mods.patch147 - // <*>RESULT <graph_name>: <trace_name>= <value> <units>
148 - // <*>RESULT <graph_name>: <trace_name>= {<mean>, <std deviation>} <units>
149 - // <*>RESULT <graph_name>: <trace_name>= [<value>,value,value,...,] <units>
446 // <*>RESULT <graph_name>: <trace_name>= <value> <units>
447 // <*>RESULT <graph_name>: <trace_name>= {<mean>, <std deviation>} <units>
448 // <*>RESULT <graph_name>: <trace_name>= [<value>,value,value,...,] <units>
/external/tensorflow/tensorflow/python/keras/utils/
Dvis_utils.py120 dot = pydot.Cluster(style='dashed', graph_name=model.name)
/external/tensorflow/tensorflow/core/protobuf/
Ddebug_event.proto172 string graph_name = 3; field
201 string graph_name = 2; field
/external/tensorflow/tensorflow/python/compiler/tensorrt/test/
Dtf_trt_integration_test_base.py542 graph_name = (
545 logging.info("Writing graph to %s/%s", temp_dir, graph_name)
546 graph_io.write_graph(gdef, temp_dir, graph_name)
/external/toolchain-utils/crosperf/
Dresults_cache.py212 graph_name = tmp_dict['graph']
213 graph_str = (graph_name + '__') if graph_name else ''
/external/tensorflow/tensorflow/core/util/
Ddebug_events_writer_test.cc415 EXPECT_EQ(actual_debugged_graph.graph_name(), "my_func_graph"); in TEST_F()