1syntax = "proto3"; 2 3package tensorflow; 4option cc_enable_arenas = true; 5 6message RemoteMemoryRegion { 7 string host = 1; 8 string port = 2; 9 uint64 addr = 3; 10 uint32 rkey = 4; 11 uint32 tensor_key = 5; 12} 13