Home | History | Annotate | Download | only in mpi
      1 
      2 syntax = "proto3";
      3 
      4 package tensorflow;
      5 option cc_enable_arenas = true;
      6 
      7 import "tensorflow/core/protobuf/worker.proto";
      8 
      9 
     10 message MPIRecvTensorResponse {
     11     RecvTensorResponse response = 1;
     12     bool              singleSend = 2;
     13     string key = 3;
     14     int64 step_id = 4;
     15     uint64 checksum = 5;
     16 }
     17 
     18 
     19 
     20