From eae4b35eab205581bd6bc87b212919533f4004d3 Mon Sep 17 00:00:00 2001 From: taosang2 Date: Wed, 29 Oct 2025 18:12:29 -0400 Subject: [PATCH 1/2] SWDEV-1 - Fix a typo Fix a typo. Remove unnecessary log. --- projects/clr/rocclr/os/os_posix.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/projects/clr/rocclr/os/os_posix.cpp b/projects/clr/rocclr/os/os_posix.cpp index bd2678d5dea..ddc060b0c7a 100644 --- a/projects/clr/rocclr/os/os_posix.cpp +++ b/projects/clr/rocclr/os/os_posix.cpp @@ -1002,8 +1002,7 @@ bool NumaNode::GetAffinity() { "/cpumap"; std::ifstream file(path); if (!file) { - std::cerr << "Failed to open " << path << "\n"; - ClPrint(amd::LOG_DEBUG, amd::LOG_RESOURCE, "%s cannot be opened", path); + ClPrint(amd::LOG_DEBUG, amd::LOG_RESOURCE, "%s cannot be opened", path.c_str()); return false; } std::string line; From 3cd12fc52bef41983b236bddd0462c8b8ac6550e Mon Sep 17 00:00:00 2001 From: geomin12 Date: Fri, 31 Oct 2025 15:12:13 -0700 Subject: [PATCH 2/2] Removing patch --- .github/workflows/therock-ci-linux.yml | 1 + .github/workflows/therock-ci-windows.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/therock-ci-linux.yml b/.github/workflows/therock-ci-linux.yml index ce9abc3f87f..4d8fbefdd79 100644 --- a/.github/workflows/therock-ci-linux.yml +++ b/.github/workflows/therock-ci-linux.yml @@ -64,6 +64,7 @@ jobs: - name: Fetch sources timeout-minutes: 30 run: | + rm ./TheRock/patches/amd-mainline/rocm-systems/0010-clr-ClPrint-std-string-to-c-string-fix.patch ./TheRock/build_tools/fetch_sources.py --jobs 12 --no-include-rocm-systems --no-include-rocm-libraries --no-include-ml-frameworks diff --git a/.github/workflows/therock-ci-windows.yml b/.github/workflows/therock-ci-windows.yml index f3b786ed027..5c680ddf3e7 100644 --- a/.github/workflows/therock-ci-windows.yml +++ b/.github/workflows/therock-ci-windows.yml @@ -52,6 +52,7 @@ jobs: - name: Patch rocm-systems run: | + rm ./TheRock/patches/amd-mainline/rocm-systems/0010-clr-ClPrint-std-string-to-c-string-fix.patch git -c user.name="therockbot" -c "user.email=therockbot@amd.com" am --whitespace=nowarn ./TheRock/patches/amd-mainline/rocm-systems/*.patch - name: Install requirements