/external/tensorflow/tensorflow/core/framework/ |
D | cpu_allocator_impl.cc | 90 stats_.bytes_in_use += alloc_size; in AllocateRaw() 92 std::max<int64>(stats_.peak_bytes_in_use, stats_.bytes_in_use); in AllocateRaw() 96 if (stats_.bytes_in_use > TotalAllocationWarningBytes() && in AllocateRaw() 99 LOG(WARNING) << "Total allocated memory " << stats_.bytes_in_use in AllocateRaw() 112 stats_.bytes_in_use -= alloc_size; in DeallocateRaw() 125 stats_.peak_bytes_in_use = stats_.bytes_in_use; in ClearStats()
|
D | allocator_test.cc | 28 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()
|
D | allocator.cc | 43 static_cast<long long>(this->bytes_in_use), in DebugString()
|
D | allocator.h | 150 int64 bytes_in_use; // Number of bytes in use. member 169 bytes_in_use(0), in AllocatorStats()
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | mkl_cpu_allocator.h | 95 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() 259 stats_.bytes_in_use = l_stats->bytes_in_use + s_stats->bytes_in_use; in GetStats()
|
D | bfc_allocator.cc | 479 int64 bytes_available = total_region_allocated_bytes_ - stats_.bytes_in_use; in GetFragmentation() 497 memory_limit_ - stats_.bytes_reserved - stats_.bytes_in_use; in AddTraceMe() 507 {"bytes_allocated", stats_.bytes_in_use}, in AddTraceMe() 563 stats_.bytes_in_use += chunk->size; in FindChunkPtr() 565 std::max(stats_.peak_bytes_in_use, stats_.bytes_in_use); in FindChunkPtr() 582 size_history_[slot] = stats_.bytes_in_use; in FindChunkPtr() 759 stats_.bytes_in_use -= c->size; in MarkFree() 764 size_history_[slot] = stats_.bytes_in_use; in MarkFree() 1098 mas->set_bytes_in_use(stats_.bytes_in_use); in RecordMemoryMapInternal() 1160 stats_.peak_bytes_in_use = stats_.bytes_in_use; in ClearStats()
|
D | step_stats_collector.cc | 179 memory->set_allocator_bytes_in_use(stats->bytes_in_use); in AddAllocation()
|
/external/tensorflow/tensorflow/stream_executor/ |
D | allocator_stats.h | 31 int64 bytes_in_use; // Number of bytes in use. member 50 bytes_in_use(0), in AllocatorStats()
|
D | allocator_stats.cc | 31 this->bytes_limit ? *this->bytes_limit : 0, this->bytes_in_use, in DebugString()
|
/external/tensorflow/tensorflow/core/profiler/internal/ |
D | tfprof_timeline.cc | 168 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()
|
D | tfprof_node.h | 179 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/ |
D | bfc_memory_map.proto | 10 int64 bytes_in_use = 2; field
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | xla_device_context.cc | 65 tf_stats.bytes_in_use = se_stats->bytes_in_use; in GetStats()
|
/external/tensorflow/tensorflow/stream_executor/tpu/ |
D | tpu_executor.cc | 230 stats.bytes_in_use = c_stats.bytes_in_use; in GetAllocatorStats()
|
D | c_api_decl.h | 84 int64_t bytes_in_use; member
|
/external/tensorflow/tensorflow/core/common_runtime/gpu/ |
D | gpu_bfc_allocator_test.cc | 45 void CheckStats(Allocator* a, int64 num_allocs, int64 bytes_in_use, in CheckStats() argument 53 EXPECT_EQ(stats->bytes_in_use, bytes_in_use); in CheckStats()
|
/external/tensorflow/tensorflow/c/experimental/stream_executor/ |
D | stream_executor.h | 110 int64_t bytes_in_use; member
|
D | stream_executor.cc | 318 stats.bytes_in_use = c_stats.bytes_in_use; in GetAllocatorStats()
|
D | stream_executor_test.cc | 413 stat->bytes_in_use = 123; in TEST_F() 421 ASSERT_EQ(stats.bytes_in_use, 123); in TEST_F()
|
/external/tensorflow/tensorflow/core/debug/ |
D | bfc_dump_reader.cc | 109 static_cast<int64_t>(md.stats().bytes_in_use()), in PrintSummary()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | stack.cc | 250 stats->bytes_in_use > (*stats->bytes_limit * kOccupancy)) { in ComputeAsync()
|
/external/e2fsprogs/lib/blkid/ |
D | probe.h | 478 __u32 bytes_in_use; member
|
/external/tensorflow/tensorflow/python/ |
D | tfe_wrapper.cc | 580 {"current", stats->bytes_in_use}, in PYBIND11_MODULE()
|