Home | History | Annotate | Download | only in gdr
      1 syntax = "proto3";
      2 
      3 package tensorflow;
      4 option cc_enable_arenas = true;
      5 
      6 message RemoteMemoryRegion {
      7   string host = 1;
      8   string port = 2;
      9   uint64 addr = 3;
     10   uint32 rkey = 4;
     11   uint32 tensor_key = 5;
     12   uint64 checksum = 6;
     13 }
     14