Home
last modified time | relevance | path

Searched refs:peak_bytes_in_use (Results 1 – 13 of 13) sorted by relevance

/external/tensorflow/tensorflow/core/common_runtime/
Dmkl_cpu_allocator.h93 stats_.peak_bytes_in_use = 0; in ClearStats()
105 stats_.peak_bytes_in_use = in IncrementStats()
106 std::max(stats_.peak_bytes_in_use, stats_.bytes_in_use); in IncrementStats()
259 stats_.peak_bytes_in_use = in GetStats()
260 l_stats->peak_bytes_in_use + s_stats->peak_bytes_in_use; in GetStats()
Dbfc_allocator.cc454 ",peak_bytes_in_use=", stats.peak_bytes_in_use, in AddTraceMe()
501 stats_.peak_bytes_in_use = in FindChunkPtr()
502 std::max(stats_.peak_bytes_in_use, stats_.bytes_in_use); in FindChunkPtr()
1034 mas->set_peak_bytes_in_use(stats_.peak_bytes_in_use); in RecordMemoryMapInternal()
1125 stats_.peak_bytes_in_use = stats_.bytes_in_use; in ClearStats()
/external/tensorflow/tensorflow/core/framework/
Dallocator_test.cc29 int64 peak_bytes_in_use, int64 largest_alloc_size) { in CheckStats() argument
42 EXPECT_GT(stats->peak_bytes_in_use, peak_bytes_in_use - kSlop); in CheckStats()
43 EXPECT_LT(stats->peak_bytes_in_use, peak_bytes_in_use + kSlop); in CheckStats()
Dcpu_allocator_impl.cc92 stats_.peak_bytes_in_use = in AllocateRaw()
93 std::max<int64>(stats_.peak_bytes_in_use, stats_.bytes_in_use); in AllocateRaw()
126 stats_.peak_bytes_in_use = stats_.bytes_in_use; in ClearStats()
Dallocator.h95 int64 peak_bytes_in_use; // The peak bytes in use. member
112 peak_bytes_in_use(0), in AllocatorStats()
Dallocator.cc44 static_cast<long long>(this->peak_bytes_in_use), in DebugString()
/external/tensorflow/tensorflow/stream_executor/
Dallocator_stats.h32 int64 peak_bytes_in_use; // The peak bytes in use. member
49 peak_bytes_in_use(0), in AllocatorStats()
Dallocator_stats.cc29 this->peak_bytes_in_use, this->num_allocs, this->largest_alloc_size); in DebugString()
/external/tensorflow/tensorflow/core/protobuf/
Dbfc_memory_map.proto11 int64 peak_bytes_in_use = 3; field
/external/tensorflow/tensorflow/compiler/jit/
Dxla_device_context.cc65 tf_stats.peak_bytes_in_use = se_stats->peak_bytes_in_use; in GetStats()
/external/tensorflow/tensorflow/core/common_runtime/gpu/
Dgpu_bfc_allocator_test.cc42 int64 peak_bytes_in_use, int64 largest_alloc_size) { in CheckStats() argument
50 EXPECT_EQ(stats->peak_bytes_in_use, peak_bytes_in_use); in CheckStats()
/external/tensorflow/tensorflow/core/debug/
Dbfc_dump_reader.cc103 md.stats().peak_bytes_in_use(), md.stats().largest_alloc_size(), in PrintSummary()
/external/tensorflow/tensorflow/core/grappler/clusters/
Dsingle_machine.cc234 (stats ? stats->peak_bytes_in_use : 0); in GetPeakMemoryUsage()