Skip to content

Commit

Permalink
update position
Browse files Browse the repository at this point in the history
  • Loading branch information
allnes committed Oct 11, 2023
1 parent 0b38eda commit 9940d25
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/plugins/intel_cpu/src/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@

#if defined(OV_CPU_WITH_ACL)
#include "nodes/executors/acl/acl_ie_scheduler.hpp"

static std::mutex & get_mtx_acl() {
static std::mutex mtx_acl;
return mtx_acl;
}
#endif

using namespace InferenceEngine;
Expand Down Expand Up @@ -141,11 +146,6 @@ class CPUSpecialSetup {
};
#endif // __linux__

static std::mutex & get_mtx_acl() {
static std::mutex mtx_acl;
return mtx_acl;
}

Engine::Engine() :
deviceFullName(getDeviceFullName()),
specialSetup(new CPUSpecialSetup) {
Expand Down

0 comments on commit 9940d25

Please sign in to comment.