mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
In favor of PiPPy (Pipeline Parallelism for PyTorch) https://github.com/pytorch/PiPPy Pull Request resolved: https://github.com/pytorch/pytorch/pull/121464 Approved by: https://github.com/wz337, https://github.com/awgu
8 lines
285 B
Python
8 lines
285 B
Python
import warnings
|
|
warnings.warn(
|
|
"torch.distributed.pipeline is deprecated. For up-to-date pipeline parallel "
|
|
"implementation, please refer to the PiPPy library under the PyTorch "
|
|
"organization (Pipeline Parallelism for PyTorch): "
|
|
"https://github.com/pytorch/PiPPy"
|
|
)
|