aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/framework/allocation_description.proto
blob: f6f4bc0126a92443973ec81c7231c06df6f2fc83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
syntax = "proto3";

package tensorflow;
// option cc_enable_arenas = true;

message AllocationDescription {
  // Total number of bytes requested
  int64 requested_bytes = 1;

  // Total number of bytes allocated if known
  int64 allocated_bytes = 2;

  // Name of the allocator used
  string allocator_name = 3;
};