Searched refs:peak_bytes_in_use (Results 1 – 11 of 11) sorted by relevance
/external/tensorflow/tensorflow/core/framework/ |
D | allocator_test.cc | 28 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()
|
D | allocator.cc | 37 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()
|
D | allocator.h | 63 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/ |
D | mkl_cpu_allocator.h | 93 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()
|
D | bfc_allocator.cc | 338 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/ |
D | allocator_stats.h | 32 int64 peak_bytes_in_use; // The peak bytes in use. member 42 peak_bytes_in_use(0), in AllocatorStats()
|
D | allocator_stats.cc | 29 this->peak_bytes_in_use, this->num_allocs, this->largest_alloc_size); in DebugString()
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | xla_device_context.cc | 65 tf_stats.peak_bytes_in_use = se_stats->peak_bytes_in_use; in GetStats()
|
/external/tensorflow/tensorflow/contrib/memory_stats/kernels/ |
D | memory_stats_ops.cc | 98 return allocator_stats.peak_bytes_in_use; in ExtractAllocatorStats()
|
/external/tensorflow/tensorflow/core/common_runtime/gpu/ |
D | gpu_bfc_allocator_test.cc | 39 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/ |
D | single_machine.cc | 237 (stats ? stats->peak_bytes_in_use : 0); in GetPeakMemoryUsage()
|