From 98026d420f2e9a834044301c5121505283f73e81 Mon Sep 17 00:00:00 2001 From: Wanglei Shen Date: Fri, 21 Jul 2023 21:13:28 +0800 Subject: [PATCH] update proc_type_table for MacOS (#18702) --- src/inference/src/os/mac/mac_system_conf.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/inference/src/os/mac/mac_system_conf.cpp b/src/inference/src/os/mac/mac_system_conf.cpp index f0bc545be41..5517979be4a 100644 --- a/src/inference/src/os/mac/mac_system_conf.cpp +++ b/src/inference/src/os/mac/mac_system_conf.cpp @@ -67,6 +67,9 @@ int parse_processor_info_macos(int& _processors, } } + _proc_type_table[0][PROC_NUMA_NODE_ID] = 0; + _proc_type_table[0][PROC_SOCKET_ID] = 0; + return 0; }