Home
last modified time | relevance | path

Searched refs:requested_bytes (Results 1 – 23 of 23) sorted by relevance

/external/tensorflow/tensorflow/lite/
Dtensorflow_profiler_logger.cc55 int64_t requested_bytes) { in AddTraceMeInternal() argument
72 {"requested_bytes", requested_bytes}, in AddTraceMeInternal()
97 int64_t requested_bytes = is_allocating ? allocation_bytes : 0; in AddTraceMe() local
102 requested_bytes]() { in AddTraceMe()
105 allocation_bytes, requested_bytes); in AddTraceMe()
179 int64_t requested_bytes = is_allocating ? allocation_bytes : 0; in AddArenaTrace() local
184 requested_bytes]() { in AddArenaTrace()
187 requested_bytes); in AddArenaTrace()
/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_node.cc122 .requested_bytes()); in AddMemoryStats()
168 int64_t requested_bytes = 0; in AddMemoryStats() local
172 requested_bytes += mem.total_bytes(); in AddMemoryStats()
177 requested_bytes += exec_mem.host_persistent_bytes() + in AddMemoryStats()
185 exec_mem.set_requested_bytes(requested_bytes); in AddMemoryStats()
Dtfprof_node_show.cc37 mutable_proto()->set_requested_bytes(node->requested_bytes(step)); in ReInit()
98 proto().requested_bytes()); in AddSelfToTotalStats()
155 mutable_proto()->set_requested_bytes(node->requested_bytes()); in ReInit()
205 proto().requested_bytes()); in AddSelfToTotalStats()
Dtfprof_node.h122 int64_t requested_bytes() const { in requested_bytes() function
123 int64_t requested_bytes = 0; in requested_bytes() local
125 requested_bytes += exec.requested_bytes(); in requested_bytes()
127 return requested_bytes; in requested_bytes()
570 int64_t requested_bytes(int64_t step) const { GRAPH_NODE_BYTES(requested); } in requested_bytes() function
807 requested_bytes_ += node->requested_bytes(step); in SnapshotNodes()
843 int64_t requested_bytes() const { return requested_bytes_; } in requested_bytes() function
Dtfprof_code.cc217 gn->requested_bytes(node->node->step())); in Add()
647 attrs.push_back(FormatNodeMemory(node, node->proto().requested_bytes(), in FormatNode()
Dtfprof_show.cc174 info.push_back(FormatNodeMemory(node, node->proto().requested_bytes(), in FormatNode()
Dtfprof_op.cc229 node->proto().requested_bytes())); in FormatNode()
/external/tensorflow/tensorflow/core/framework/
Dallocator_test.cc259 requested_bytes, allocation_bytes; in TEST() local
267 requested_bytes = stat.ToString(); in TEST()
272 ASSERT_TRUE(bytes_allocated && peak_bytes_in_use && requested_bytes && in TEST()
277 EXPECT_EQ(*requested_bytes, "32") << "XSpace: " << xspace.DebugString(); in TEST()
Dallocation_description.proto13 int64 requested_bytes = 1; field
/external/tensorflow/tensorflow/core/profiler/convert/
Dxplane_to_memory_profile.cc260 std::make_tuple(-a_meta->allocation_bytes(), -a_meta->requested_bytes(), in operator ()()
264 std::make_tuple(-b_meta->allocation_bytes(), -b_meta->requested_bytes(), in operator ()()
316 a_meta->requested_bytes() == b_meta->requested_bytes() && in operator ==()
/external/tensorflow/tensorflow/core/profiler/
Dtfprof_output.proto32 int64 requested_bytes = 3; field
94 int64 requested_bytes = 3; field
Dtfprof_log.proto138 int64 requested_bytes = 6; field
/external/tensorflow/tensorflow/python/profiler/
Dprofiler_test.py204 self.assertEqual(n1.requested_bytes, 0)
214 self.assertGreater(n2.requested_bytes, 0)
Dmodel_analyzer_test.py472 self.assertGreaterEqual(n.requested_bytes, mb)
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.profiler.-multi-graph-node-proto.pbtxt30 name: "requested_bytes"
Dtensorflow.profiler.-graph-node-proto.pbtxt43 name: "requested_bytes"
/external/flac/src/test_libFLAC/
Ddecoders.c130 const size_t requested_bytes = *bytes; in stream_decoder_read_callback_() local
146 else if(requested_bytes > 0) { in stream_decoder_read_callback_()
147 *bytes = fread(buffer, 1, requested_bytes, dcd->file); in stream_decoder_read_callback_()
/external/flac/src/test_libFLAC++/
Ddecoders.cpp204 const size_t requested_bytes = *bytes; in read_callback() local
213 else if(requested_bytes > 0) { in read_callback()
214 *bytes = ::fread(buffer, 1, requested_bytes, file_); in read_callback()
/external/tensorflow/tensorflow/core/profiler/protobuf/
Dmemory_profile.proto43 int64 requested_bytes = 2; field
/external/tensorflow/tensorflow/python/client/
Dtimeline.py511 num_bytes = allocation.requested_bytes
/external/tensorflow/tensorflow/core/graph/
Dcostmodel.cc122 no.tensor_description().allocation_description().requested_bytes(); in MergeFromStats()
/external/tensorflow/tensorflow/core/grappler/costs/
Dvirtual_scheduler_test.cc3252 allocation_description.requested_bytes()); in TEST_F()
3257 allocation_description.requested_bytes()); in TEST_F()
3260 allocation_description.requested_bytes()); in TEST_F()
/external/tensorflow/tensorflow/core/distributed_runtime/
Dmaster_session.cc299 tot += no.tensor_description().allocation_description().requested_bytes(); in DetailText()