Home
last modified time | relevance | path

Searched refs:peak_bytes_in_use (Results 1 – 21 of 21) 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()
260 stats_.peak_bytes_in_use = in GetStats()
261 l_stats->peak_bytes_in_use + s_stats->peak_bytes_in_use; in GetStats()
Dbfc_allocator.cc510 {"peak_bytes_in_use", stats_.peak_bytes_in_use}, in AddTraceMe()
564 stats_.peak_bytes_in_use = in FindChunkPtr()
565 std::max(stats_.peak_bytes_in_use, stats_.bytes_in_use); in FindChunkPtr()
1099 mas->set_peak_bytes_in_use(stats_.peak_bytes_in_use); in RecordMemoryMapInternal()
1160 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.cc91 stats_.peak_bytes_in_use = in AllocateRaw()
92 std::max<int64>(stats_.peak_bytes_in_use, stats_.bytes_in_use); in AllocateRaw()
125 stats_.peak_bytes_in_use = stats_.bytes_in_use; in ClearStats()
Dallocator.cc44 static_cast<long long>(this->peak_bytes_in_use), in DebugString()
Dallocator.h151 int64 peak_bytes_in_use; // The peak bytes in use. member
170 peak_bytes_in_use(0), in AllocatorStats()
/external/tensorflow/tensorflow/stream_executor/
Dallocator_stats.h32 int64 peak_bytes_in_use; // The peak bytes in use. member
51 peak_bytes_in_use(0), in AllocatorStats()
Dallocator_stats.cc32 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.cc66 tf_stats.peak_bytes_in_use = se_stats->peak_bytes_in_use; in GetStats()
/external/tensorflow/tensorflow/core/profiler/convert/
Dxplane_to_memory_profile.cc65 summary->set_peak_bytes_usage_lifetime(stats.peak_bytes_in_use()); in UpdateProfileSummary()
70 peak_stats->peak_bytes_in_use()) { in UpdateProfileSummary()
509 .peak_bytes_in_use(), in ProcessMemoryProfileProto()
Dxplane_to_memory_profile_test.cc102 .peak_bytes_in_use(), in TEST()
/external/tensorflow/tensorflow/stream_executor/tpu/
Dtpu_executor.cc231 stats.peak_bytes_in_use = c_stats.peak_bytes_in_use; in GetAllocatorStats()
Dc_api_decl.h85 int64_t peak_bytes_in_use; member
/external/tensorflow/tensorflow/core/common_runtime/gpu/
Dgpu_bfc_allocator_test.cc46 int64 peak_bytes_in_use, int64 largest_alloc_size) { in CheckStats() argument
54 EXPECT_EQ(stats->peak_bytes_in_use, peak_bytes_in_use); in CheckStats()
/external/tensorflow/tensorflow/c/experimental/stream_executor/
Dstream_executor.h111 int64_t peak_bytes_in_use; member
Dstream_executor.cc319 stats.peak_bytes_in_use = c_stats.peak_bytes_in_use; in GetAllocatorStats()
/external/tensorflow/tensorflow/core/profiler/protobuf/
Dmemory_profile.proto32 int64 peak_bytes_in_use = 5; field
/external/tensorflow/tensorflow/core/debug/
Dbfc_dump_reader.cc110 static_cast<int64_t>(md.stats().peak_bytes_in_use()), in PrintSummary()
/external/tensorflow/tensorflow/core/grappler/clusters/
Dsingle_machine.cc234 (stats ? stats->peak_bytes_in_use : 0); in GetPeakMemoryUsage()
/external/tensorflow/tensorflow/python/
Dtfe_wrapper.cc581 {"peak", stats->peak_bytes_in_use}}; in PYBIND11_MODULE()