Skip to content

Commit

Permalink
Fix CI issue
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorDuplensky committed Jan 30, 2025
1 parent 2497eb3 commit c1d5f75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/intel_cpu/src/graph_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ GraphContext::GraphContext(Config config,
m_auxiliaryNetworkMemoryControl(std::make_shared<NetworkMemoryControl>()),
m_memoryControl(m_auxiliaryNetworkMemoryControl->createMemoryControlUnit()) {
if (m_streamExecutor) {
auto cpuStreamExecutor = std::dynamic_pointer_cast<ov::threading::CPUStreamsExecutor>(m_streamExecutor);
m_numaNodeId = cpuStreamExecutor ? cpuStreamExecutor->get_numa_node_id() : 0;
m_cpuStreamExecutor = std::dynamic_pointer_cast<ov::threading::CPUStreamsExecutor>(m_streamExecutor);
m_numaNodeId = m_cpuStreamExecutor ? m_cpuStreamExecutor->get_numa_node_id() : 0;
auto nNumaNodes = get_num_numa_nodes();
if (m_numNumaNodes < nNumaNodes) {
m_numNumaNodes = nNumaNodes;
Expand Down

0 comments on commit c1d5f75

Please sign in to comment.