HomeSort by relevance Sort by last modified time
    Searched refs:bytes_in_use (Results 1 - 17 of 17) sorted by null

  /external/tensorflow/tensorflow/core/framework/
allocator.cc 30 this->bytes_in_use = 0;
43 this->bytes_limit, this->bytes_in_use, this->max_bytes_in_use,
85 stats_.bytes_in_use += alloc_size;
87 std::max<int64>(stats_.max_bytes_in_use, stats_.bytes_in_use);
99 stats_.bytes_in_use -= alloc_size;
112 stats_.max_bytes_in_use = stats_.bytes_in_use;
allocator_test.cc 27 static void CheckStats(Allocator* a, int64 num_allocs, int64 bytes_in_use,
36 EXPECT_GT(stats.bytes_in_use, bytes_in_use - kSlop);
37 EXPECT_LT(stats.bytes_in_use, bytes_in_use + kSlop);
allocator.h 51 int64 bytes_in_use; // Number of bytes in use. member in struct:tensorflow::AllocatorStats
  /external/tensorflow/tensorflow/core/common_runtime/sycl/
sycl_allocator.cc 50 stats_.bytes_in_use += bytes_allocated;
52 std::max<int64>(stats_.max_bytes_in_use, stats_.bytes_in_use);
64 stats_.bytes_in_use -= dealloc_size;
77 stats_.max_bytes_in_use = stats_.bytes_in_use;
  /external/tensorflow/tensorflow/contrib/memory_stats/python/ops/
memory_stats_ops.py 31 return gen_memory_stats_ops.bytes_in_use()
  /external/tensorflow/tensorflow/contrib/memory_stats/python/kernel_tests/
memory_stats_ops_test.py 82 _, bytes_in_use, max_bytes_in_use = sess.run([c, bytes_in_use_op,
86 self.assertGreaterEqual(bytes_in_use, matrix_size_in_bytes * 1)
87 self.assertLess(bytes_in_use, matrix_size_in_bytes * 2)
  /external/tensorflow/tensorflow/contrib/memory_stats/kernels/
memory_stats_ops.cc 52 return allocator_stats.bytes_in_use;
  /device/google/cuttlefish_common/common/vsoc/lib/
circqueue_impl.h 92 uint32_t bytes_in_use = o_w_pub - o_r_release; local
93 size_t available = BufferSize - bytes_in_use;
  /external/tensorflow/tensorflow/core/common_runtime/
bfc_allocator.cc 321 stats_.bytes_in_use += chunk->size;
323 std::max(stats_.max_bytes_in_use, stats_.bytes_in_use);
472 stats_.bytes_in_use -= c->size;
691 stats_.max_bytes_in_use = stats_.bytes_in_use;
step_stats_collector.cc 55 memory->set_allocator_bytes_in_use(stats.bytes_in_use);
  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_timeline.cc 168 for (const auto& bytes_in_use : node->node->allocator_bytes_in_use(step)) {
169 if (bytes_in_use.first <= 0) continue;
170 dev.allocations[bytes_in_use.first] = bytes_in_use.second;
tfprof_node.h 180 std::map<int64, int64> bytes_in_use; local
182 bytes_in_use[exec.memory_micros()] = exec.allocator_bytes_in_use();
184 return bytes_in_use;
  /external/syslinux/core/fs/ntfs/
ntfs.h 239 uint32_t bytes_in_use; member in struct:ntfs_mft_record
257 uint32_t bytes_in_use; member in struct:ntfs_mft_record_old
  /external/tensorflow/tensorflow/core/common_runtime/gpu/
gpu_bfc_allocator_test.cc 37 static void CheckStats(Allocator* a, int64 num_allocs, int64 bytes_in_use,
42 EXPECT_EQ(stats.bytes_in_use, bytes_in_use);
  /external/tensorflow/tensorflow/c/eager/
runtime.cc 314 memory->set_allocator_bytes_in_use(allocator_stats.bytes_in_use);
  /external/e2fsprogs/lib/blkid/
probe.h 478 __u32 bytes_in_use; member in struct:master_file_table_record
  /external/tensorflow/tensorflow/core/kernels/
stack_ops.cc 288 if (stats.bytes_in_use > (stats.bytes_limit * kOccupancy)) {

Completed in 570 milliseconds