From 5e60fb93d5693e3a02224b95561b0e2b36f356ff Mon Sep 17 00:00:00 2001 From: arvindcheru <90783369+arvindcheru@users.noreply.github.com> Date: Tue, 22 Aug 2023 09:14:49 -0400 Subject: [PATCH] 366827 - Disable file reorg backward compatibility support by default (#849) * Disable file reorg backward compatibility support by default - File Reorg backward compatibility option set to OFF * Update install.sh [ROCm/rccl commit: 6ee758382eac0e8831fb4d246a2f6f5da637f6f9] --- projects/rccl/CMakeLists.txt | 2 +- projects/rccl/install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/rccl/CMakeLists.txt b/projects/rccl/CMakeLists.txt index b37bec4d7f..b7b0c24a65 100644 --- a/projects/rccl/CMakeLists.txt +++ b/projects/rccl/CMakeLists.txt @@ -12,7 +12,7 @@ project(rccl CXX) option(BUILD_ADDRESS_SANITIZER "Enable address sanitizer" OFF) option(BUILD_ALLREDUCE_ONLY "AllReduce(sum,float) kernel only" OFF) option(BUILD_BFD "Enable custom backtrace (if bfd.h exists)" ON) -option(BUILD_FILE_REORG_BACKWARD_COMPATIBILITY "File/folder reorg with backward compatibility" ON) +option(BUILD_FILE_REORG_BACKWARD_COMPATIBILITY "File/folder reorg with backward compatibility" OFF) option(BUILD_LOCAL_GPU_TARGET_ONLY "Build only for GPUs detected on this machine" OFF) option(BUILD_SHARED_LIBS "Build as shared library" ON) option(BUILD_TESTS "Build unit test programs" OFF) diff --git a/projects/rccl/install.sh b/projects/rccl/install.sh index 2d778f1928..6e5af1f216 100755 --- a/projects/rccl/install.sh +++ b/projects/rccl/install.sh @@ -10,7 +10,7 @@ ROCM_PATH=${ROCM_PATH:="/opt/rocm"} build_address_sanitizer=false build_allreduce_only=false build_bfd=true -build_freorg_bkwdcomp=true +build_freorg_bkwdcomp=false build_local_gpu_only=false build_package=false build_release=true