mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
[c10d][nvshmem] add nvshmem build rules and dependency for libtorch_cuda (#159562)
Summary: Add guarded build option for nvshmem-related c10d code with `-c fbcode.caffe2_use_nvshmem` Guarded clause include nvshmem device + host code (static-linked) + these 2 files: - `torch/csrc/distributed/c10d/symm_mem/NVSHMEMSymmetricMemory.cu` - `torch/csrc/distributed/c10d/symm_mem/nvshmem_extension.cu` Pull Request resolved: https://github.com/pytorch/pytorch/pull/159562 Approved by: https://github.com/Skylion007, https://github.com/kwen2501
This commit is contained in:
committed by
PyTorch MergeBot
parent
75bc23cfc3
commit
91f0bcf43f
@ -758,6 +758,13 @@ libtorch_cuda_distributed_extra_sources = [
|
||||
"torch/csrc/distributed/rpc/tensorpipe_cuda.cpp",
|
||||
]
|
||||
|
||||
libtorch_nvshmem_sources = [
|
||||
"torch/csrc/distributed/c10d/cuda/utils.cpp",
|
||||
"torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.cpp",
|
||||
"torch/csrc/distributed/c10d/symm_mem/nvshmem_extension.cu",
|
||||
"torch/csrc/distributed/c10d/symm_mem/NVSHMEMSymmetricMemory.cu",
|
||||
]
|
||||
|
||||
libtorch_cuda_distributed_sources = libtorch_cuda_distributed_base_sources + libtorch_cuda_distributed_extra_sources
|
||||
|
||||
libtorch_cuda_sources = libtorch_cuda_core_sources + libtorch_cuda_distributed_sources + [
|
||||
|
Reference in New Issue
Block a user