From 847899dd7edd580432785e46d2d6494f227575df Mon Sep 17 00:00:00 2001 From: Pedram Alizadeh Date: Tue, 31 Jan 2023 11:11:02 -0500 Subject: [PATCH] removed the wrapper script so that the old name is no longer referenced (#676) [ROCm/rccl commit: fbe52b6caad68c1ef87699dfc0aa86b31204dad7] --- projects/rccl/test/CMakeLists.txt | 1 - projects/rccl/test/common/UnitTests | 10 ---------- 2 files changed, 11 deletions(-) delete mode 100755 projects/rccl/test/common/UnitTests diff --git a/projects/rccl/test/CMakeLists.txt b/projects/rccl/test/CMakeLists.txt index 758c8d09e9..7aba58a678 100644 --- a/projects/rccl/test/CMakeLists.txt +++ b/projects/rccl/test/CMakeLists.txt @@ -97,7 +97,6 @@ if(BUILD_TESTS) endif() add_executable(rccl-UnitTests ${COMMON_SOURCE_FILES} ${TEST_SOURCE_FILES}) - configure_file(common/UnitTests UnitTests) target_include_directories(rccl-UnitTests PRIVATE ${ROCM_PATH} ${GTEST_INCLUDE_DIRS}) target_link_libraries(rccl-UnitTests PRIVATE ${GTEST_BOTH_LIBRARIES}) target_link_libraries(rccl-UnitTests PRIVATE hip::host hip::device hsa-runtime64::hsa-runtime64) diff --git a/projects/rccl/test/common/UnitTests b/projects/rccl/test/common/UnitTests deleted file mode 100755 index 2835cb47ee..0000000000 --- a/projects/rccl/test/common/UnitTests +++ /dev/null @@ -1,10 +0,0 @@ -#/************************************************************************* -# * Copyright (c) 2022 Advanced Micro Devices, Inc. All rights reserved. -# * -# * See LICENSE.txt for license information -# ************************************************************************/ - -#!/bin/bash -echo "The RCCL test client name has changed from UnitTests to rccl-UnitTests. Please make sure to execute the rccl-UnitTests instead." - -./rccl-UnitTests $@