mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/33851 Rationale and context described in #33828. Script to reproduce the move: https://gist.github.com/suo/16cbefaaeb67ca5a7c6caffd49b7f6e9 ghstack-source-id: 99079645 Test Plan: Make sure CI passes Reviewed By: jamesr66a Differential Revision: D20133869 fbshipit-source-id: 390e9241a9c85366d9005c492ac31f10aa96488e
44 lines
1023 B
C++
44 lines
1023 B
C++
#pragma once
|
|
|
|
#include <torch/csrc/distributed/rpc/message.h>
|
|
#include <torch/csrc/distributed/rpc/rpc_command_base.h>
|
|
#include <torch/csrc/distributed/rpc/types.h>
|
|
#include <torch/csrc/jit/serialization/pickler.h>
|
|
#include <vector>
|
|
|
|
namespace torch {
|
|
namespace distributed {
|
|
namespace rpc {
|
|
|
|
class TORCH_API PythonRemoteCall : public RpcCommandBase {
|
|
public:
|
|
PythonRemoteCall(
|
|
SerializedPyObj&& serializedPyObj,
|
|
at::IValue retRRefId,
|
|
at::IValue retForkId);
|
|
|
|
inline const SerializedPyObj& serializedPyObj() const {
|
|
return serializedPyObj_;
|
|
}
|
|
|
|
inline const at::IValue& retRRefId() const {
|
|
return retRRefId_;
|
|
}
|
|
|
|
inline const at::IValue& retForkId() const {
|
|
return retForkId_;
|
|
}
|
|
|
|
Message toMessage() && override;
|
|
static std::unique_ptr<PythonRemoteCall> fromMessage(const Message& message);
|
|
|
|
private:
|
|
const SerializedPyObj serializedPyObj_;
|
|
const at::IValue retRRefId_;
|
|
const at::IValue retForkId_;
|
|
};
|
|
|
|
} // namespace rpc
|
|
} // namespace distributed
|
|
} // namespace torch
|