Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/framework/
Dallocator_test.cc28 int64 peak_bytes_in_use, int64 largest_alloc_size) { in CheckStats() argument
41 EXPECT_GT(stats->peak_bytes_in_use, peak_bytes_in_use - kSlop); in CheckStats()
42 EXPECT_LT(stats->peak_bytes_in_use, peak_bytes_in_use + kSlop); in CheckStats()
Dallocator.cc37 this->peak_bytes_in_use, this->num_allocs, this->largest_alloc_size); in DebugString()
127 stats_.peak_bytes_in_use = in AllocateRaw()
128 std::max<int64>(stats_.peak_bytes_in_use, stats_.bytes_in_use); in AllocateRaw()
161 stats_.peak_bytes_in_use = stats_.bytes_in_use; in ClearStats()
Dallocator.h63 int64 peak_bytes_in_use; // The peak bytes in use. member
73 peak_bytes_in_use(0), in AllocatorStats()
/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()
258 stats_.peak_bytes_in_use = in GetStats()
259 l_stats->peak_bytes_in_use + s_stats->peak_bytes_in_use; in GetStats()
Dbfc_allocator.cc338 stats_.peak_bytes_in_use = in FindChunkPtr()
339 std::max(stats_.peak_bytes_in_use, stats_.bytes_in_use); in FindChunkPtr()
697 stats_.peak_bytes_in_use = stats_.bytes_in_use; in ClearStats()
/external/tensorflow/tensorflow/stream_executor/
Dallocator_stats.h32 int64 peak_bytes_in_use; // The peak bytes in use. member
42 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/compiler/jit/
Dxla_device_context.cc65 tf_stats.peak_bytes_in_use = se_stats->peak_bytes_in_use; in GetStats()
/external/tensorflow/tensorflow/contrib/memory_stats/kernels/
Dmemory_stats_ops.cc98 return allocator_stats.peak_bytes_in_use; in ExtractAllocatorStats()
/external/tensorflow/tensorflow/core/common_runtime/gpu/
Dgpu_bfc_allocator_test.cc39 int64 peak_bytes_in_use, int64 largest_alloc_size) { in CheckStats() argument
47 EXPECT_EQ(stats->peak_bytes_in_use, peak_bytes_in_use); in CheckStats()
/external/tensorflow/tensorflow/core/grappler/clusters/
Dsingle_machine.cc237 (stats ? stats->peak_bytes_in_use : 0); in GetPeakMemoryUsage()