mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-23 14:59:34 +08:00
Headers under torch/csrc/distributed may be referened with relative path, e.g., "<c10d/...>". However, relative path cannot be gracefully handled by Meta internal build when the NCCL PG is hipified to support AMD/RCCL because the "hipified" header files are generated in other directories. Moreover, using absolute path for header inclusion is the state-of-the-art in most components in Pytorch. Thus, this patch refactors all header paths in torch/csrc/distributed to be absolute. See D39835774 for more details about Meta internal complication. **How to test**: commit 9e5d199 removes -I./torch/csrc/distributed in compile options. Thus use it to verify we don't miss any relative path use of torch/csrc/distributed headers. Pull Request resolved: https://github.com/pytorch/pytorch/pull/85780 Approved by: https://github.com/kumpera, https://github.com/huydhn
53 lines
1.6 KiB
C++
53 lines
1.6 KiB
C++
#include <torch/csrc/distributed/c10d/python_comm_hook.h>
|
|
|
|
#include <ATen/core/functional.h>
|
|
#include <torch/csrc/distributed/c10d/reducer.hpp>
|
|
#include <torch/csrc/jit/python/pybind_utils.h>
|
|
#include <torch/csrc/utils/tensor_flatten.h>
|
|
|
|
namespace c10d {
|
|
|
|
PythonCommHook::~PythonCommHook() {
|
|
py::gil_scoped_acquire ag;
|
|
state_.dec_ref();
|
|
hook_.dec_ref();
|
|
// Explicitly set state_ and hook_ to nullptr to prevent py::object's dtor
|
|
// to decref on the PyObject again.
|
|
// See Note [Destructing py::object] in python_ivalue.h
|
|
state_.ptr() = nullptr;
|
|
hook_.ptr() = nullptr;
|
|
}
|
|
|
|
c10::intrusive_ptr<c10::ivalue::Future> PythonCommHook::runHook(
|
|
GradBucket& bucket) {
|
|
py::gil_scoped_acquire acquire;
|
|
|
|
py::object py_fut = hook_(state_, bucket);
|
|
|
|
try {
|
|
return py_fut.cast<std::shared_ptr<torch::jit::PythonFutureWrapper>>()->fut;
|
|
} catch (const py::cast_error& e) {
|
|
auto type = py_fut.get_type();
|
|
auto errMsg = c10::str(
|
|
e.what(),
|
|
". DDP communication hook's callback must return a "
|
|
"torch.futures.Future object, but got ",
|
|
type.attr("__module__").cast<std::string>(),
|
|
".",
|
|
type.attr("__qualname__").cast<std::string>());
|
|
TORCH_CHECK(false, errMsg);
|
|
}
|
|
}
|
|
|
|
at::Tensor PythonCommHook::parseHookResult(const c10::IValue& result) {
|
|
TORCH_INTERNAL_ASSERT(
|
|
result.isPyObject(), "expected the hook result is a PyObject");
|
|
|
|
py::gil_scoped_acquire ag;
|
|
py::object obj = torch::jit::toPyObject(result);
|
|
auto value = torch::jit::toIValue(obj, c10::TensorType::get());
|
|
return value.toTensor();
|
|
}
|
|
|
|
} // namespace c10d
|