From a75e9843c875bac0f52d34a1763e39e16fb3c9a7 Mon Sep 17 00:00:00 2001 From: Ch Vamshi Krishna <40261882+chvamshi-xilinx@users.noreply.github.com> Date: Mon, 20 May 2024 15:33:24 +0530 Subject: [PATCH] fixed the incorrect sysfs path (#8182) (#8184) Signed-off-by: ch vamshi krishna Co-authored-by: ch vamshi krishna (cherry picked from commit 8d070495d092a2e773f2360cbff4fa29138da67d) --- src/runtime_src/core/edge/user/aie_sys_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime_src/core/edge/user/aie_sys_parser.cpp b/src/runtime_src/core/edge/user/aie_sys_parser.cpp index 807ff683ec1..42975820e10 100644 --- a/src/runtime_src/core/edge/user/aie_sys_parser.cpp +++ b/src/runtime_src/core/edge/user/aie_sys_parser.cpp @@ -161,6 +161,6 @@ aie_sys_parser::aie_sys_read(const int col, const int row) const return pt; } -aie_sys_parser::aie_sys_parser(const std::string& root) : sysfs_root("sys/class/aie/aiepart_" + root + "/") +aie_sys_parser::aie_sys_parser(const std::string& root) : sysfs_root("/sys/class/aie/aiepart_" + root + "/") { }