variable_response.h 4.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// 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.

#pragma once

Y
Yancey1989 已提交
17 18
#include <string>

W
wanghuancoder 已提交
19 20
#include "google/protobuf/io/coded_stream.h"
#include "google/protobuf/io/zero_copy_stream.h"
21 22 23 24 25
#include "paddle/fluid/framework/data_type.h"
#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/scope.h"
#include "paddle/fluid/framework/selected_rows.h"
#include "paddle/fluid/framework/tensor.h"
W
wanghuancoder 已提交
26
#include "paddle/fluid/framework/var_type.h"
W
Wu Yi 已提交
27
#include "paddle/fluid/operators/distributed/distributed_pb.h"
28

W
wanghuancoder 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
namespace google {
namespace protobuf {
namespace io {
class CodedInputStream;
class ZeroCopyInputStream;
}  // namespace io
}  // namespace protobuf
}  // namespace google
namespace paddle {
namespace framework {
class Variable;
}  // namespace framework
namespace platform {
class DeviceContext;
}  // namespace platform
}  // namespace paddle

Q
Qiao Longfei 已提交
46 47
DECLARE_string(rpc_server_profile_path);

48 49
namespace paddle {
namespace operators {
50
namespace distributed {
51

52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
// Source provides a way for a particular RPC implementation to provide
// received data to ParseFrom.
class Source {
 public:
  virtual ~Source() {}

  // Return the stream that contains the data to be parsed.
  // Note that this method might be invoked more than once if
  // ParseFrom needs to fall back to a more expensive parsing method.
  // Every call must return a stream pointing at the beginning of
  // the serialized RecvTensorResponse.
  //
  // Note that a subsequent call to contents() invalidates previous
  // results of contents().
  //
  // Ownership of the returned stream is retained by the Source and
  // should not be deleted by the caller.
  virtual ::google::protobuf::io::ZeroCopyInputStream* contents() = 0;
};

72 73
class VariableResponse {
 public:
74 75 76 77 78
  VariableResponse(const framework::Scope* scope,
                   const platform::DeviceContext* dev_ctx,
                   bool create_scope = false)
      : scope_(scope), dev_ctx_(dev_ctx), create_scope_(create_scope) {
    if (create_scope) {
79
      local_scope_ = scope->NewTmpScope().release();
80
    }
81
  }
82

83
  virtual ~VariableResponse() {
Q
Qiao Longfei 已提交
84
    if (local_scope_) {
Q
Qiao Longfei 已提交
85 86
      delete local_scope_;
      local_scope_ = nullptr;
Q
Qiao Longfei 已提交
87
    }
88
  }
89

90 91 92 93
  int Parse(Source* source, const sendrecv::VariableMessage& meta) {
    meta_ = meta;
    return Parse(source);
  }
94 95 96 97 98

  // return:
  // 0:ok.
  // -1: unkown error.
  // other: number of error field.
99
  virtual int Parse(Source* source) = 0;
100

101 102
  inline const framework::Scope& GetLocalScope() const { return *local_scope_; }
  inline framework::Scope* GetMutableLocalScope() const { return local_scope_; }
103 104
  inline std::string Varname() const { return meta_.varname(); }
  inline std::string OutVarname() const { return meta_.out_varname(); }
Q
Qiao Longfei 已提交
105
  inline std::string TableName() const { return meta_.table_name(); }
106 107

  // should call parse first.
108
  framework::Variable* GetVar() {
109
    if (create_scope_) {
110 111
      return local_scope_->Var(meta_.varname());
    }
112
    return scope_->FindVar(meta_.varname());
113
  }
114

115 116 117 118 119 120 121
  framework::Variable* GetRecvVar() {
    if (create_scope_) {
      return local_scope_->Var(meta_.out_varname());
    }
    return scope_->FindVar(meta_.out_varname());
  }

W
Wu Yi 已提交
122 123
  int GetTrainerId() { return static_cast<int>(meta_.trainer_id()); }

124 125 126 127 128
 protected:
  bool ReadRaw(::google::protobuf::io::CodedInputStream* input,
               const platform::DeviceContext& dev_ctx, platform::Place place,
               void* dest, int64_t size);

129 130
  bool CopySelectRowsTensorData(::google::protobuf::io::CodedInputStream* input,
                                const platform::DeviceContext& ctx,
Y
Yancey1989 已提交
131
                                const framework::DDim& dims, int length);
132 133 134 135 136 137

  bool CopySelectRowsData(::google::protobuf::io::CodedInputStream* input,
                          const platform::DeviceContext& ctx, int length);

  bool CopyLodTensorData(::google::protobuf::io::CodedInputStream* input,
                         const platform::DeviceContext& ctx,
Y
Yancey1989 已提交
138
                         const framework::DDim& dims, int length);
139

140 141 142 143 144
  bool ProcSerializedField(int tag,
                           ::google::protobuf::io::CodedInputStream* input,
                           int64_t num_bytes);

 protected:
145 146
  const framework::Scope* scope_;
  const platform::DeviceContext* dev_ctx_;
147 148
  bool create_scope_ = false;
  framework::Scope* local_scope_ = nullptr;
149

150 151 152
  sendrecv::VariableMessage meta_;
};

153
};  // namespace distributed
154 155
};  // namespace operators
};  // namespace paddle