send_recv.proto 2.6 KB
Newer Older
Y
Yancey 已提交
1 2 3
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve. Licensed under
the Apache License, Version 2.0 (the "License"); you may not use this file
except in compliance with the License.
L
Luo Tao 已提交
4
You may obtain a copy of the License at
武毅 已提交
5

L
Luo Tao 已提交
6
    http://www.apache.org/licenses/LICENSE-2.0
武毅 已提交
7

L
Luo Tao 已提交
8 9 10 11 12
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
武毅 已提交
13 14 15 16

syntax = "proto3";
package sendrecv;

G
gongweibao 已提交
17 18
// option cc_generic_services = true;

武毅 已提交
19
service SendRecvService {
20
  // For parameter server round-robin like hashing, do not split tensors.
武毅 已提交
21
  // Send and recv only one tensor
T
typhoonzero 已提交
22
  // TODO(typhoonzero): add streaming API
T
typhoonzero 已提交
23 24
  rpc SendVariable(VariableMessage) returns (VoidMessage) {}
  // Argument VariableMessage for GetVariable should only contain varname.
T
typhoonzero 已提交
25
  rpc GetVariable(VariableMessage) returns (VariableMessage) {}
Y
Yancey1989 已提交
26
  // pre-fetch variable by given variable name and Ids
27
  rpc PrefetchVariable(VariableMessage) returns (VariableMessage) {}
T
tangwei12 已提交
28 29

  rpc CheckpointNotify(CheckpointMessage) returns (VoidMessage) {}
武毅 已提交
30 31 32 33 34 35
}

// VariableMessage is serialized paddle variable message.
// It can be:
// LoDTensor
// SelectedRows
Y
Yancey 已提交
36 37 38
enum VarType {
  LOD_TENSOR = 0;
  SELECTED_ROWS = 1;
T
typhoonzero 已提交
39
  NCCL_ID = 2;
Y
Yancey 已提交
40 41
}

42 43 44
// NOTICE(gongwb):don't modify this proto if you are not
//   not familar with how we serialize in sendrecvop_utils.h
//   and deserilize it in  variable_response.h.
武毅 已提交
45
message VariableMessage {
46 47 48 49 50 51 52 53 54 55 56 57
  enum Type {
    // Pod Types
    BOOL = 0;
    INT16 = 1;
    INT32 = 2;
    INT64 = 3;
    FP16 = 4;
    FP32 = 5;
    FP64 = 6;
  }

  message LodData { repeated int64 lod_data = 1; }
武毅 已提交
58
  string varname = 1;
Y
Yancey 已提交
59 60
  // TODO(Yancey1989): reference framework::proto::VarDesc::VarType
  VarType type = 2;
61 62 63 64 65 66 67 68
  // bool persistable is not needed for sending.
  // tensor info:
  Type data_type = 3;
  repeated int64 dims = 4;

  // lod details:
  int64 lod_level = 5;
  repeated LodData lod = 6;
69 70
  // selected_rows height, aka. original dim0
  int64 slr_height = 7;
71
  // tensor data
72
  bytes serialized = 8;
73
  // selected_rows data
74
  bytes rows = 9;
Y
Yancey1989 已提交
75
  // Look up table block execution output variable name.
Y
Yancey1989 已提交
76
  string out_varname = 10;
X
Xin Pan 已提交
77
  // If 1, the ps server will start profiling, the ps
78
  // server stops profiling and generates a profile to /tmp/profile_ps_*
X
Xin Pan 已提交
79
  // when profile switches from 1 to 2.
X
Xin Pan 已提交
80
  int64 profile = 11;
武毅 已提交
81 82
}

武毅 已提交
83
message VoidMessage {}
T
tangwei12 已提交
84 85 86 87 88

message CheckpointMessage {
  string notify_type = 1;
  string checkpoint_dir = 2;
}