From f8e42aac45815c5be92c0915b12b9a6652386e8c Mon Sep 17 00:00:00 2001 From: Dean Wyatte <2512762+dwyatte@users.noreply.github.com> Date: Wed, 5 Jul 2023 19:33:04 -0600 Subject: [PATCH] remove mpi_cxx from multi-gpu build for now (#705) --- src/fastertransformer/utils/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastertransformer/utils/CMakeLists.txt b/src/fastertransformer/utils/CMakeLists.txt index 22f735c27..9796ad076 100644 --- a/src/fastertransformer/utils/CMakeLists.txt +++ b/src/fastertransformer/utils/CMakeLists.txt @@ -57,7 +57,7 @@ add_library(mpi_utils STATIC mpi_utils.cc) set_property(TARGET mpi_utils PROPERTY POSITION_INDEPENDENT_CODE ON) set_property(TARGET mpi_utils PROPERTY CUDA_RESOLVE_DEVICE_SYMBOLS ON) if (BUILD_MULTI_GPU) - target_link_libraries(mpi_utils PUBLIC -lmpi -lmpi_cxx logger) + target_link_libraries(mpi_utils PUBLIC -lmpi logger) endif() add_library(nccl_utils STATIC nccl_utils.cc)