Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/micro/
Drecording_micro_allocator_test.cc76 TF_LITE_MICRO_EXPECT_EQ(recorded_allocation.requested_bytes, in TF_LITE_MICRO_TEST()
112 TF_LITE_MICRO_EXPECT_EQ(recorded_allocation.requested_bytes, in TF_LITE_MICRO_TEST()
164 TF_LITE_MICRO_EXPECT_EQ(recorded_allocation.requested_bytes, in TF_LITE_MICRO_TEST()
190 TF_LITE_MICRO_EXPECT_EQ(recorded_allocation.requested_bytes, in TF_LITE_MICRO_TEST()
237 TF_LITE_MICRO_EXPECT_EQ(recorded_allocation.requested_bytes, in TF_LITE_MICRO_TEST()
261 TF_LITE_MICRO_EXPECT_EQ(recorded_allocation.requested_bytes, in TF_LITE_MICRO_TEST()
274 TF_LITE_MICRO_EXPECT_EQ(recorded_allocation.requested_bytes, in TF_LITE_MICRO_TEST()
Drecording_micro_allocator.cc121 if (allocation.used_bytes > 0 || allocation.requested_bytes > 0) { in PrintRecordedAllocation()
126 allocation_name, allocation.used_bytes, allocation.requested_bytes, in PrintRecordedAllocation()
233 recorded_allocation.requested_bytes += in RecordAllocationUsage()
235 snapshotted_allocation.requested_bytes; in RecordAllocationUsage()
Drecording_micro_allocator.h43 size_t requested_bytes; member
/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_node.cc122 .requested_bytes()); in AddMemoryStats()
171 int64 requested_bytes = 0; in AddMemoryStats() local
175 requested_bytes += mem.total_bytes(); in AddMemoryStats()
180 requested_bytes += exec_mem.host_persistent_bytes() + in AddMemoryStats()
188 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 requested_bytes() const { in requested_bytes() function
123 int64 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 requested_bytes(int64 step) const { GRAPH_NODE_BYTES(requested); } in requested_bytes() function
807 requested_bytes_ += node->requested_bytes(step); in SnapshotNodes()
843 int64 requested_bytes() const { return requested_bytes_; } in requested_bytes() function
Dtfprof_op.cc228 node->proto().requested_bytes())); in FormatNode()
Dtfprof_show.cc174 info.push_back(FormatNodeMemory(node, node->proto().requested_bytes(), in FormatNode()
Dtfprof_code.cc219 gn->requested_bytes(node->node->step())); in Add()
649 attrs.push_back(FormatNodeMemory(node, node->proto().requested_bytes(), in FormatNode()
/external/tensorflow/tensorflow/core/profiler/convert/
Dxplane_to_memory_profile.cc258 std::make_tuple(-a_meta->allocation_bytes(), -a_meta->requested_bytes(), in operator ()()
262 std::make_tuple(-b_meta->allocation_bytes(), -b_meta->requested_bytes(), in operator ()()
313 a_meta->requested_bytes() == b_meta->requested_bytes() && in operator ==()
/external/tensorflow/tensorflow/core/framework/
Dallocation_description.proto13 int64 requested_bytes = 1; field
/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.py208 self.assertEqual(n1.requested_bytes, 0)
218 self.assertGreater(n2.requested_bytes, 0)
Dmodel_analyzer_test.py482 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.py512 num_bytes = allocation.requested_bytes
/external/tensorflow/tensorflow/core/graph/
Dcostmodel.cc121 no.tensor_description().allocation_description().requested_bytes(); in MergeFromStats()
/external/tensorflow/tensorflow/core/distributed_runtime/
Dmaster_session.cc293 tot += no.tensor_description().allocation_description().requested_bytes(); in DetailText()