Skip to content

Commit a084b1c

Browse files
fix: change numa library string for SLES
Modified libnuma.so.1 to be loaded instead of libnuma.so for SLES compatibility Related-To: NEO-8276 Signed-off-by: Yoon, Young Jin <[email protected]>
1 parent a673347 commit a084b1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared/source/os_interface/linux/numa_library.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class NumaLibrary {
2323
static bool getMemPolicy(int *mode, std::vector<unsigned long> &nodeMask, void *addr);
2424

2525
protected:
26-
static constexpr const char *numaLibNameStr = "libnuma.so";
26+
static constexpr const char *numaLibNameStr = "libnuma.so.1";
2727
static constexpr const char *procGetMemPolicyStr = "get_mempolicy";
2828
static constexpr const char *procNumaAvailableStr = "numa_available";
2929
static constexpr const char *procNumaMaxNodeStr = "numa_max_node";

0 commit comments

Comments
 (0)