Home
last modified time | relevance | path

Searched refs:peak_bytes (Results 1 – 16 of 16) sorted by relevance

/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_node.cc173 int64 peak_bytes = 0; in AddMemoryStats() local
177 peak_bytes += mem.peak_bytes(); in AddMemoryStats()
185 peak_bytes += exec_mem.host_persistent_bytes() + in AddMemoryStats()
191 exec_mem.set_peak_bytes(peak_bytes); in AddMemoryStats()
Dtfprof_node_show.cc41 mutable_proto()->set_peak_bytes(node->peak_bytes(step)); in ReInit()
103 proto().peak_bytes()); in AddSelfToTotalStats()
159 mutable_proto()->set_peak_bytes(node->peak_bytes()); in ReInit()
210 proto().peak_bytes()); in AddSelfToTotalStats()
Dtfprof_node.h130 int64 peak_bytes() const { in peak_bytes() function
131 int64 peak_bytes = 0; in peak_bytes() local
133 peak_bytes += exec.peak_bytes(); in peak_bytes()
135 return peak_bytes; in peak_bytes()
572 int64 peak_bytes(int64 step) const { GRAPH_NODE_BYTES(peak); } in peak_bytes() function
809 peak_bytes_ += node->peak_bytes(step); in SnapshotNodes()
845 int64 peak_bytes() const { return peak_bytes_; } in peak_bytes() function
Dtfprof_code.cc221 sample_pb->mutable_value()->Add(gn->peak_bytes(node->node->step())); in Add()
638 attrs.push_back(FormatNodeMemory(node, node->proto().peak_bytes(), in FormatNode()
Dtfprof_op.cc237 node->proto().peak_bytes())); in FormatNode()
Dtfprof_show.cc178 info.push_back(FormatNodeMemory(node, node->proto().peak_bytes(), in FormatNode()
/external/tensorflow/tensorflow/core/profiler/
Dtfprof_output.proto34 int64 peak_bytes = 24; field
96 int64 peak_bytes = 16; field
Dtfprof_log.proto139 int64 peak_bytes = 7; field
/external/tensorflow/tensorflow/core/profiler/g3doc/
Doptions.md67 `peak_bytes`: The peak requested memory (not de-allocated) by the operation.
101 `-order_by`: Order the results by [name|depth|bytes|peak_bytes|residual_bytes|output_bytes|micros|a…
119 [bytes|peak_bytes|residual_bytes|output_bytes|micros|accelerator_micros|cpu_micros|params|float_ops…
/external/tensorflow/tensorflow/python/profiler/
Dprofiler_test.py209 self.assertEqual(n1.peak_bytes, 0)
219 self.assertGreater(n2.peak_bytes, 0)
Dmodel_analyzer_test.py486 self.assertGreaterEqual(n.peak_bytes, mpb)
741 self.assertGreater(n.peak_bytes, 0)
744 self.assertEqual(n.peak_bytes, n2.peak_bytes)
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.profiler.-multi-graph-node-proto.pbtxt36 name: "peak_bytes"
Dtensorflow.profiler.-graph-node-proto.pbtxt49 name: "peak_bytes"
/external/tensorflow/tensorflow/core/framework/
Dstep_stats.proto24 int64 peak_bytes = 3; field
/external/tensorflow/tensorflow/core/common_runtime/
Ddirect_session_with_tracking_alloc_test.cc362 EXPECT_LT(0, node_stat.memory(0).peak_bytes()); in TEST()
Dstep_stats_collector.cc66 int64 peak = all.peak_bytes(); in Done()