From 54c750456cacdadc2f8d0cdc9cdab762f4b0d56f Mon Sep 17 00:00:00 2001 From: Bertan Dogancay <111835151+BertanDogancay@users.noreply.github.com> Date: Wed, 22 Jan 2025 18:48:10 -0500 Subject: [PATCH] Only look for librccl .co files in StackSize test (#1499) Co-authored-by: BertanDogancay [ROCm/rccl commit: 5afe900efdadb68c17474c5fdb66edd2d9ce542f] --- projects/rccl/test/StandaloneTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/rccl/test/StandaloneTests.cpp b/projects/rccl/test/StandaloneTests.cpp index f699aeb4c9..9021faa72e 100644 --- a/projects/rccl/test/StandaloneTests.cpp +++ b/projects/rccl/test/StandaloneTests.cpp @@ -269,7 +269,7 @@ namespace RcclUnitTesting const char* mainKernel = "ncclDevKernel"; // Look for the .co files - std::vector coFileList = splitString(executeCommand("find ../ -type f -name \"*.co\""), '\n'); + std::vector coFileList = splitString(executeCommand("find ../ -type f -name \"librccl*.co\""), '\n'); // Check if the .co files exist in the build directory if (coFileList.empty())