Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_node.cc172 int64 peak_bytes = 0; in AddMemoryStats() local
176 peak_bytes += mem.peak_bytes(); in AddMemoryStats()
184 peak_bytes += exec_mem.host_persistent_bytes() + in AddMemoryStats()
190 exec_mem.set_peak_bytes(peak_bytes); in AddMemoryStats()
Dtfprof_node_show.cc38 mutable_proto()->set_peak_bytes(node->peak_bytes(step)); in ReInit()
100 proto().peak_bytes()); in AddSelfToTotalStats()
156 mutable_proto()->set_peak_bytes(node->peak_bytes()); in ReInit()
207 proto().peak_bytes()); in AddSelfToTotalStats()
Dtfprof_node.h129 int64 peak_bytes() const { in peak_bytes() function
130 int64 peak_bytes = 0; in peak_bytes() local
132 peak_bytes += exec.peak_bytes(); in peak_bytes()
134 return peak_bytes; in peak_bytes()
571 int64 peak_bytes(int64 step) const { GRAPH_NODE_BYTES(peak); } in peak_bytes() function
808 peak_bytes_ += node->peak_bytes(step); in SnapshotNodes()
844 int64 peak_bytes() const { return peak_bytes_; } in peak_bytes() function
Dtfprof_op.cc234 node->proto().peak_bytes())); in FormatNode()
Dtfprof_show.cc178 info.push_back(FormatNodeMemory(node, node->proto().peak_bytes(), in FormatNode()
Dtfprof_code.cc221 sample_pb->mutable_value()->Add(gn->peak_bytes(node->node->step())); in Add()
653 attrs.push_back(FormatNodeMemory(node, node->proto().peak_bytes(), in FormatNode()
/external/icing/icing/testing/
Drecorder-test-utils.h26 int64_t peak_bytes; member
Drecorder-test-utils.cc58 profile_info.peak_bytes += sample.value(1); in SummarizeProfileProto()
/external/icing/icing/file/
Dmemory-mapped-file-leak_test.cc66 EXPECT_THAT(profile_info.peak_bytes, Le(600)); in TEST()
/external/tensorflow/tensorflow/core/profiler/
Dtfprof_output.proto34 int64 peak_bytes = 24; field
96 int64 peak_bytes = 16; field
Dtfprof_log.proto140 int64 peak_bytes = 7; field
/external/tensorflow/tensorflow/python/profiler/
Dprofiler_test.py209 self.assertEqual(n1.peak_bytes, 0)
219 self.assertGreater(n2.peak_bytes, 0)
Dmodel_analyzer_test.py484 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/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…
125 [bytes|peak_bytes|residual_bytes|output_bytes|micros|accelerator_micros|cpu_micros|params|float_ops…
/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.proto26 int64 peak_bytes = 3; field
/external/tensorflow/tensorflow/core/common_runtime/
Ddirect_session_with_tracking_alloc_test.cc353 EXPECT_LT(0, node_stat.memory(0).peak_bytes()); in TEST()
Dstep_stats_collector.cc75 int64 peak = all.peak_bytes(); in Done()