1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
|
#include <torch/csrc/distributed/rpc/request_callback_impl.h>
#include <c10/util/C++17.h>
#include <torch/csrc/autograd/profiler.h>
#include <torch/csrc/distributed/autograd/context/container.h>
#include <torch/csrc/distributed/autograd/context/context.h>
#include <torch/csrc/distributed/autograd/engine/dist_engine.h>
#include <torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h>
#include <torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h>
#include <torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h>
#include <torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h>
#include <torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h>
#include <torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h>
#include <torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h>
#include <torch/csrc/distributed/autograd/utils.h>
#include <torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h>
#include <torch/csrc/distributed/rpc/python_call.h>
#include <torch/csrc/distributed/rpc/python_remote_call.h>
#include <torch/csrc/distributed/rpc/python_resp.h>
#include <torch/csrc/distributed/rpc/python_rpc_handler.h>
#include <torch/csrc/distributed/rpc/rref_context.h>
#include <torch/csrc/distributed/rpc/rref_impl.h>
#include <torch/csrc/distributed/rpc/rref_proto.h>
#include <torch/csrc/distributed/rpc/script_call.h>
#include <torch/csrc/distributed/rpc/script_remote_call.h>
#include <torch/csrc/distributed/rpc/script_resp.h>
#include <torch/csrc/distributed/rpc/unpickled_python_call.h>
#include <torch/csrc/distributed/rpc/unpickled_python_remote_call.h>
#include <torch/csrc/distributed/rpc/utils.h>
#include <torch/csrc/jit/frontend/code_template.h>
#include <torch/csrc/jit/python/pybind_utils.h>
namespace torch {
namespace distributed {
namespace rpc {
using namespace torch::distributed::autograd;
namespace {
std::unique_ptr<RpcCommandBase> deserializePythonRpcCommandReference(
RpcCommandBase& rpc,
const MessageType& messageType) {
switch (messageType) {
case MessageType::PYTHON_CALL: {
auto& pc = static_cast<PythonCall&>(rpc);
return std::make_unique<UnpickledPythonCall>(
pc.serializedPyObj(), pc.isAsyncExecution());
}
case MessageType::PYTHON_REMOTE_CALL: {
auto& prc = static_cast<PythonRemoteCall&>(rpc);
return std::make_unique<UnpickledPythonRemoteCall>(
prc.serializedPyObj(),
prc.retRRefId(),
prc.retForkId(),
prc.isAsyncExecution());
}
case MessageType::FORWARD_AUTOGRAD_REQ: {
// Deserialize the wrapped RPC if it contains Python UDF
auto& rwa = static_cast<RpcWithAutograd&>(rpc);
auto& wrappedRpc = rwa.wrappedRpc();
auto pythonRpc = deserializePythonRpcCommandReference(
wrappedRpc, rwa.wrappedMessageType());
if (pythonRpc) {
rwa.setWrappedRpc(std::move(pythonRpc));
}
return nullptr;
}
case MessageType::RUN_WITH_PROFILING_REQ: {
// Deserialize wrapped RPC if it contains python call
auto& rpcWithProfilingReq = static_cast<RpcWithProfilingReq&>(rpc);
auto& wrappedRpc = rpcWithProfilingReq.wrappedRpc();
auto pythonRpc = deserializePythonRpcCommandReference(
wrappedRpc, rpcWithProfilingReq.wrappedMessageType());
if (pythonRpc) {
rpcWithProfilingReq.setWrappedRpc(std::move(pythonRpc));
}
return nullptr;
}
default: {
return nullptr;
}
}
}
void processAsyncExecution(
const py::object& pyFn,
const int64_t messageId,
const std::shared_ptr<FutureMessage>& responseFuture,
std::function<void(
const py::object&,
int64_t,
PythonRpcHandler&,
const std::shared_ptr<FutureMessage>&)> postProcessing) {
std::shared_ptr<jit::PythonFutureWrapper> pyFuture;
auto& pythonRpcHandler = PythonRpcHandler::getInstance();
{
py::gil_scoped_acquire acquire;
auto result = pythonRpcHandler.runPythonUdf(pyFn);
if (pythonRpcHandler.isRemoteException(result)) {
// Hit exception when running the user function.
// Not releasing GIL before serialize to avoid an additional
// context switch.
postProcessing(result, messageId, pythonRpcHandler, responseFuture);
return;
}
try {
pyFuture = result.cast<std::shared_ptr<jit::PythonFutureWrapper>>();
} catch (const py::cast_error& e) {
auto type = result.get_type();
auto errMsg = c10::str(
e.what(),
". Functions decorated with @rpc.async_function must return a "
"torch.futures.Future object, but got ",
type.attr("__module__").cast<std::string>(),
".",
type.attr("__qualname__").cast<std::string>());
throw std::runtime_error(errMsg);
}
}
pyFuture->fut->addCallback([messageId,
responseFuture,
postProcessing{std::move(postProcessing)},
jitFuture = pyFuture->fut,
&pythonRpcHandler]() {
py::gil_scoped_acquire acquire;
postProcessing(
jit::toPyObject(jitFuture->value()),
messageId,
pythonRpcHandler,
responseFuture);
});
}
} // anonymous namespace
std::unique_ptr<RpcCommandBase> RequestCallbackImpl::
deserializePythonRpcCommand(
std::unique_ptr<RpcCommandBase> rpc,
const MessageType& messageType) const {
auto pythonRpc = deserializePythonRpcCommandReference(*rpc, messageType);
return pythonRpc ? std::move(pythonRpc) : std::move(rpc);
}
void RequestCallbackImpl::processScriptCall(
ScriptCall& scriptCall,
const std::function<void(Message)>& markComplete,
std::vector<at::IValue>& stack,
const int64_t messageId,
const std::shared_ptr<FutureMessage>& responseFuture) const {
if (processScriptCallOp(scriptCall, markComplete, stack)) {
return;
}
// runAsync() starts in the calling thread, but may return an uncompleted
// future (though for non-async code, it will typically be completed).
// If it was async, our callback will typically be invoked by the
// continuation on an at::launch() thread.
auto jitFuture = PythonRpcHandler::getInstance()
.jitCompilationUnit()
->get_function(scriptCall.qualifiedName())
.runAsync(stack);
if (scriptCall.isAsyncExecution()) {
jitFuture->addCallback([responseFuture, messageId, jitFuture]() {
try {
auto valueJitFuture = jitFuture->value().toFuture();
valueJitFuture->addCallback(
[responseFuture, messageId, valueJitFuture]() {
try {
Message m = ScriptResp(valueJitFuture->value()).toMessage();
m.setId(messageId);
responseFuture->markCompleted(std::move(m));
} catch (const std::exception& e) {
responseFuture->setError(e.what());
}
});
} catch (const std::exception& e) {
responseFuture->setError(e.what());
}
});
} else {
if (jitFuture->completed()) {
markComplete(std::move(ScriptResp(jitFuture->value())).toMessage());
return;
}
jitFuture->addCallback([responseFuture, messageId, jitFuture]() {
try {
Message m = ScriptResp(jitFuture->value()).toMessage();
m.setId(messageId);
responseFuture->markCompleted(std::move(m));
} catch (const std::exception& e) {
responseFuture->setError(e.what());
}
});
}
}
void RequestCallbackImpl::processPythonCall(
RpcCommandBase& rpc,
const std::function<void(Message)>& markComplete,
const int64_t messageId,
const std::shared_ptr<FutureMessage>& responseFuture) const {
auto& upc = static_cast<UnpickledPythonCall&>(rpc);
if (upc.isAsyncExecution()) {
try {
processAsyncExecution(
upc.pythonUdf(),
messageId,
responseFuture,
[](const py::object& result,
const int64_t messageId,
PythonRpcHandler& pythonRpcHandler,
const std::shared_ptr<FutureMessage>& responseFuture) {
auto serializedPyObj = pythonRpcHandler.serialize(result);
py::gil_scoped_release release;
auto m =
std::move(PythonResp(std::move(serializedPyObj))).toMessage();
m.setId(messageId);
responseFuture->markCompleted(std::move(m));
});
} catch (std::exception& e) {
responseFuture->markCompleted(
createExceptionResponse(e.what(), messageId));
}
} else {
auto& pythonRpcHandler = PythonRpcHandler::getInstance();
std::shared_ptr<SerializedPyObj> serializedPyObj;
{
py::gil_scoped_acquire acquire;
serializedPyObj =
std::make_shared<SerializedPyObj>(pythonRpcHandler.serialize(
pythonRpcHandler.runPythonUdf(upc.pythonUdf())));
}
markComplete(
std::move(PythonResp(std::move(*serializedPyObj))).toMessage());
}
}
TypePtr RequestCallbackImpl::getScriptRemoteCallType(
ScriptRemoteCall& scriptRemoteCall) const {
TypePtr returnType;
if (scriptRemoteCall.hasOp()) {
returnType = scriptRemoteCall.op()->schema().returns()[0].type();
} else {
returnType = PythonRpcHandler::getInstance()
.jitCompilationUnit()
->get_function(scriptRemoteCall.qualifiedName())
.getSchema()
.returns()
.at(0)
.type();
}
return returnType;
}
void RequestCallbackImpl::processScriptRemoteCall(
ScriptRemoteCall& scriptRemoteCall,
const std::function<void(void)>& postProcessing,
std::vector<at::IValue>& stack,
const c10::intrusive_ptr<OwnerRRef>& ownerRRef) const {
if (processScriptRemoteCallOp(
scriptRemoteCall, postProcessing, stack, ownerRRef)) {
return;
}
auto setRRefValue =
[ownerRRef, postProcessing](
const c10::intrusive_ptr<c10::ivalue::Future>& jitFuture) mutable {
try {
ownerRRef->setValue(jitFuture->value());
} catch (const std::exception& e) {
ownerRRef->setError(std::current_exception());
}
postProcessing();
};
auto isAsyncExecution = scriptRemoteCall.isAsyncExecution();
auto asyncPostProcessing =
[ownerRRef,
postProcessing,
setRRefValue{std::move(setRRefValue)},
isAsyncExecution](
const c10::intrusive_ptr<c10::ivalue::Future>& jitFuture) mutable {
if (isAsyncExecution) {
// The user function will return a JIT future, install
// setRRefValue and postProcessing to that valueFuture
try {
auto valueJitFuture = jitFuture->value().toFuture();
valueJitFuture->addCallback(
[valueJitFuture,
setRRefValue{std::move(setRRefValue)}]() mutable {
setRRefValue(valueJitFuture);
});
} catch (const std::exception& e) {
ownerRRef->setError(std::current_exception());
postProcessing();
}
} else {
// The user function will return a value. Set OwnerRRef when that
// value is ready.
setRRefValue(jitFuture);
}
};
c10::intrusive_ptr<c10::ivalue::Future> jitFuture;
try {
jitFuture = PythonRpcHandler::getInstance()
.jitCompilationUnit()
->get_function(scriptRemoteCall.qualifiedName())
.runAsync(stack);
if (jitFuture->completed()) { // short-cut.
asyncPostProcessing(jitFuture);
return;
}
} catch (const std::exception& e) {
asyncPostProcessing(jitFuture);
return;
}
jitFuture->addCallback(
[jitFuture,
asyncPostProcessing{std::move(asyncPostProcessing)}]() mutable {
asyncPostProcessing(jitFuture);
});
}
void RequestCallbackImpl::processPythonRemoteCall(
RpcCommandBase& rpc,
const std::function<void(Message)>& markComplete,
const int64_t messageId,
const std::shared_ptr<FutureMessage>& responseFuture) const {
auto& uprc = static_cast<UnpickledPythonRemoteCall&>(rpc);
const auto& rrefId = uprc.rrefId();
const auto& forkId = uprc.forkId();
auto& ctx = RRefContext::getInstance();
c10::intrusive_ptr<OwnerRRef> ownerRRef;
if (rrefId == forkId) {
// Creating an owner RRef on self, should already exist in owners map
ownerRRef = ctx.getOwnerRRef(rrefId, /* forceCreated */ true)->constValue();
} else {
ownerRRef = ctx.getOrCreateOwnerRRef(rrefId, PyObjectType::get());
}
auto& pythonRpcHandler = PythonRpcHandler::getInstance();
if (rrefId != forkId) {
// Caller is a user and callee is the owner, add fork
//
// NB: rrefId == forkId is true if and only if calling remote to self.
// In that case both the caller and the callee will access the
// OwnerRRef. Hence, on the callee side (here), it should not call
// addForkOfOwner as it is not a fork. To allow callee to distinguish
// when this request is sent to self, the caller will set forkId using
// rrefId (OwnerRRef does not have a forkId anyway).
ctx.addForkOfOwner(rrefId, forkId);
}
if (uprc.isAsyncExecution()) {
try {
processAsyncExecution(
uprc.pythonUdf(),
messageId,
responseFuture,
[ownerRRef, rrefId, forkId](
const py::object& result,
const int64_t messageId,
PythonRpcHandler& /* unused */,
const std::shared_ptr<FutureMessage>& responseFuture) {
IValue py_ivalue = jit::toIValue(result, PyObjectType::get());
py::gil_scoped_release release;
ownerRRef->setValue(std::move(py_ivalue));
auto m = RemoteRet(rrefId, forkId).toMessage();
m.setId(messageId);
responseFuture->markCompleted(std::move(m));
});
} catch (std::exception& e) {
ownerRRef->setError(std::current_exception());
auto m = RemoteRet(rrefId, forkId).toMessage();
m.setId(messageId);
responseFuture->markCompleted(std::move(m));
}
} else {
IValue py_ivalue;
try {
{
py::gil_scoped_acquire acquire;
py_ivalue = jit::toIValue(
pythonRpcHandler.runPythonUdf(uprc.pythonUdf()),
PyObjectType::get());
}
ownerRRef->setValue(std::move(py_ivalue));
} catch (py::error_already_set& e) {
// py::error_already_set requires GIL to destruct, take special care.
ownerRRef->setError(std::current_exception());
py::gil_scoped_acquire acquire;
e.restore();
PyErr_Clear();
} catch (std::exception& e) {
ownerRRef->setError(std::current_exception());
}
markComplete(RemoteRet(rrefId, forkId).toMessage());
}
}
void RequestCallbackImpl::processPythonRRefFetchCall(
RpcCommandBase& rpc,
const int64_t messageId,
const std::shared_ptr<FutureMessage>& responseFuture) const {
// Making this lambda mutable to allow move-capture it in callbacks
auto postProcessing = [responseFuture](
const c10::intrusive_ptr<OwnerRRef>& rref,
int64_t messageId) mutable {
auto whenValueSet = rref->getFuture();
if (whenValueSet->hasError()) {
responseFuture->setError(whenValueSet->tryRetrieveErrorMessage());
return;
}
try {
auto& pythonRpcHandler = PythonRpcHandler::getInstance();
std::shared_ptr<SerializedPyObj> result;
{
// Need this GIL to guard jit::toPyObj and destruct its returned
// py::object
py::gil_scoped_acquire acquire;
result = std::make_shared<SerializedPyObj>(
pythonRpcHandler.serialize(jit::toPyObject(rref->getValue())));
}
Message m =
PythonRRefFetchRet(std::move(*result).toIValues()).toMessage();
m.setId(messageId);
responseFuture->markCompleted(std::move(m));
} catch (py::error_already_set& e) {
// py::error_already_set requires GIL to destruct, take special care.
responseFuture->setError(e.what());
py::gil_scoped_acquire acquire;
e.restore();
PyErr_Clear();
} catch (const std::exception& e) {
responseFuture->setError(e.what());
}
};
auto& prf = static_cast<PythonRRefFetchCall&>(rpc);
auto& ctx = RRefContext::getInstance();
auto futureOwner = ctx.getOwnerRRef(prf.rrefId());
if (futureOwner->completed() && futureOwner->constValue()->hasValue()) {
// optional fast-path, the OwnerRRef has been created
postProcessing(futureOwner->constValue(), messageId);
return;
}
futureOwner->addCallback([messageId,
futureOwner,
postProcessing{
std::move(postProcessing)}]() mutable {
const auto& rref = futureOwner->constValue();
// Our response is satisfied when the the rpc.remote() request
// finishes executing on the owner.
rref->getFuture()->addCallback(
[messageId, rref, postProcessing{std::move(postProcessing)}]() mutable {
postProcessing(rref, messageId);
});
});
}
void RequestCallbackImpl::handleRRefDelete(
c10::intrusive_ptr<RRef>& rref) const {
if (rref && rref->isPyObj()) {
py::gil_scoped_acquire acquire;
rref.reset();
}
}
void RequestCallbackImpl::processRpcWithErrors(
RpcCommandBase& rpc,
const MessageType& messageType,
const int64_t messageId,
const std::shared_ptr<FutureMessage>& responseFuture) const {
try {
processRpc(rpc, messageType, messageId, responseFuture);
} catch (py::error_already_set& e) {
responseFuture->markCompleted(handleError(e, messageType, messageId));
// There are request callback impls in Python, where Python
// exceptions could be thrown. For releasing Python exception
// py::objects, GIL must be held.
py::gil_scoped_acquire acquire;
e.restore(); // Release ownership on py::objects and also restore
// Python Error Indicator.
PyErr_Clear(); // Clear the Python Error Indicator as we has
// recorded the exception in the response message.
} catch (std::exception& e) {
responseFuture->markCompleted(handleError(e, messageType, messageId));
}
}
bool RequestCallbackImpl::cudaAvailable() const {
#ifdef USE_CUDA
return true;
#else
return false;
#endif
}
} // namespace rpc
} // namespace distributed
} // namespace torch
|