SWDEV-1 - Fix a typo (#1615)

* SWDEV-1 - Fix a typo

Fix a typo.
Remove unnecessary log.

* Removing patch

---------

Co-authored-by: geomin12 <geomin12@amd.com>
Co-authored-by: Scott Todd <scott.todd0@gmail.com>
Este commit está contenido en:
MachineTom
2025-11-03 15:59:00 -05:00
cometido por GitHub
padre d411d101fb
commit fb006546d0
Se han modificado 3 ficheros con 3 adiciones y 2 borrados
+1
Ver fichero
@@ -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
+1
Ver fichero
@@ -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
+1 -2
Ver fichero
@@ -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;