Home
last modified time | relevance | path

Searched refs:bytes_in_use (Results 1 – 18 of 18) sorted by relevance

/external/tensorflow/tensorflow/core/framework/
Dcpu_allocator_impl.cc91 stats_.bytes_in_use += alloc_size; in AllocateRaw()
93 std::max<int64>(stats_.peak_bytes_in_use, stats_.bytes_in_use); in AllocateRaw()
97 if (stats_.bytes_in_use > TotalAllocationWarningBytes() && in AllocateRaw()
100 LOG(WARNING) << "Total allocated memory " << stats_.bytes_in_use in AllocateRaw()
113 stats_.bytes_in_use -= alloc_size; in DeallocateRaw()
126 stats_.peak_bytes_in_use = stats_.bytes_in_use; in ClearStats()
Dallocator_test.cc28 static void CheckStats(Allocator* a, int64 num_allocs, int64 bytes_in_use, in CheckStats() argument
40 EXPECT_GT(stats->bytes_in_use, bytes_in_use - kSlop); in CheckStats()
41 EXPECT_LT(stats->bytes_in_use, bytes_in_use + kSlop); in CheckStats()
Dallocator.h94 int64 bytes_in_use; // Number of bytes in use. member
111 bytes_in_use(0), in AllocatorStats()
Dallocator.cc43 static_cast<long long>(this->bytes_in_use), in DebugString()
/external/tensorflow/tensorflow/core/common_runtime/sycl/
Dsycl_allocator.cc50 stats_.bytes_in_use += bytes_allocated; in AllocateRaw()
52 std::max<int64>(stats_.max_bytes_in_use, stats_.bytes_in_use); in AllocateRaw()
64 stats_.bytes_in_use -= dealloc_size; in DeallocateRaw()
77 stats_.max_bytes_in_use = stats_.bytes_in_use; in ClearStats()
/external/tensorflow/tensorflow/core/common_runtime/
Dmkl_cpu_allocator.h95 stats_.bytes_in_use = 0; in ClearStats()
104 stats_.bytes_in_use += alloc_size; in IncrementStats()
106 std::max(stats_.peak_bytes_in_use, stats_.bytes_in_use); in IncrementStats()
114 stats_.bytes_in_use -= dealloc_size; in DecrementStats()
258 stats_.bytes_in_use = l_stats->bytes_in_use + s_stats->bytes_in_use; in GetStats()
Dbfc_allocator.cc449 memory_limit_ - stats.bytes_reserved - stats.bytes_in_use; in AddTraceMe()
452 ",bytes_allocated=", stats.bytes_in_use, in AddTraceMe()
500 stats_.bytes_in_use += chunk->size; in FindChunkPtr()
502 std::max(stats_.peak_bytes_in_use, stats_.bytes_in_use); in FindChunkPtr()
520 size_history_[slot] = stats_.bytes_in_use; in FindChunkPtr()
691 stats_.bytes_in_use -= c->size; in MarkFree()
697 size_history_[slot] = stats_.bytes_in_use; in MarkFree()
1033 mas->set_bytes_in_use(stats_.bytes_in_use); in RecordMemoryMapInternal()
1125 stats_.peak_bytes_in_use = stats_.bytes_in_use; in ClearStats()
Dstep_stats_collector.cc189 memory->set_allocator_bytes_in_use(stats->bytes_in_use); in AddAllocation()
/external/tensorflow/tensorflow/stream_executor/
Dallocator_stats.h31 int64 bytes_in_use; // Number of bytes in use. member
48 bytes_in_use(0), in AllocatorStats()
Dallocator_stats.cc28 this->bytes_limit ? *this->bytes_limit : 0, this->bytes_in_use, in DebugString()
/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_timeline.cc168 for (const auto& bytes_in_use : node->node->allocator_bytes_in_use(step)) { in TrackNode() local
169 if (bytes_in_use.first <= 0) continue; in TrackNode()
170 dev.allocations[bytes_in_use.first] = bytes_in_use.second; in TrackNode()
Dtfprof_node.h179 std::map<int64, int64> bytes_in_use; in allocator_bytes_in_use() local
181 bytes_in_use[exec.memory_micros()] = exec.allocator_bytes_in_use(); in allocator_bytes_in_use()
183 return bytes_in_use; in allocator_bytes_in_use()
/external/tensorflow/tensorflow/core/protobuf/
Dbfc_memory_map.proto10 int64 bytes_in_use = 2; field
/external/tensorflow/tensorflow/compiler/jit/
Dxla_device_context.cc64 tf_stats.bytes_in_use = se_stats->bytes_in_use; in GetStats()
/external/tensorflow/tensorflow/core/common_runtime/gpu/
Dgpu_bfc_allocator_test.cc41 static void CheckStats(Allocator* a, int64 num_allocs, int64 bytes_in_use, in CheckStats() argument
49 EXPECT_EQ(stats->bytes_in_use, bytes_in_use); in CheckStats()
/external/tensorflow/tensorflow/core/debug/
Dbfc_dump_reader.cc102 md.stats().num_allocs(), md.stats().bytes_in_use(), in PrintSummary()
/external/tensorflow/tensorflow/core/kernels/
Dstack.cc249 stats->bytes_in_use > (*stats->bytes_limit * kOccupancy)) { in ComputeAsync()
/external/e2fsprogs/lib/blkid/
Dprobe.h478 __u32 bytes_in_use; member