Home
last modified time | relevance | path

Searched refs:max_bytes_in_use (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/contrib/memory_stats/python/kernel_tests/
Dmemory_stats_ops_test.py69 max_bytes_in_use = sess.run(max_bytes_in_use_op)
70 self.assertGreaterEqual(max_bytes_in_use, matrix_size_in_bytes * 3)
71 self.assertLess(max_bytes_in_use, matrix_size_in_bytes * 4)
82 _, bytes_in_use, max_bytes_in_use = sess.run([c, bytes_in_use_op,
90 self.assertGreaterEqual(max_bytes_in_use, matrix_size_in_bytes * 3)
/external/tensorflow/tensorflow/core/common_runtime/sycl/
Dsycl_allocator.cc51 stats_.max_bytes_in_use = in AllocateRaw()
52 std::max<int64>(stats_.max_bytes_in_use, stats_.bytes_in_use); in AllocateRaw()
77 stats_.max_bytes_in_use = stats_.bytes_in_use; in ClearStats()
/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_timeline.cc278 int64 max_bytes_in_use = 0; in GenerateGraphTimeline() local
283 max_bytes_in_use = std::max(max_bytes_in_use, cur_bytes_in_use); in GenerateGraphTimeline()
305 max_bytes_in_use / 1000000.0); in GenerateGraphTimeline()
/external/tensorflow/tensorflow/contrib/memory_stats/python/ops/
Dmemory_stats_ops.py41 return gen_memory_stats_ops.max_bytes_in_use()