Skip to content

Commit

Permalink
[CPU] Rename source files containing memory blocks impls (openvinotoo…
Browse files Browse the repository at this point in the history
…lkit#26780)

### Details:
Rename the files with memory blocks implementations to properly reflect
their purpose i.e., `*_mgr.*` -> `*_blk.*`.
  • Loading branch information
maxnick authored Sep 26, 2024
1 parent c20059a commit 36a3bd8
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/graph.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <vector>

#include "openvino/runtime/so_ptr.hpp"
#include "proxy_mem_mgr.h"
#include "proxy_mem_blk.h"

namespace ov {
namespace intel_cpu {
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/infer_request.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include "openvino/core/shape.hpp"
#include "openvino/runtime/make_tensor.hpp"
#include "openvino/runtime/tensor.hpp"
#include "proxy_mem_mgr.h"
#include "proxy_mem_blk.h"
#include "utils/general_utils.h"
#include "utils/ngraph_utils.hpp"
#include "openvino/runtime/threading/cpu_message.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include "node.h"
#include "cpu_types.h"
#include "edge.h"
#include "partitioned_mem_mgr.h"
#include "partitioned_mem_blk.h"

#include <memory>
#include <oneapi/dnnl/dnnl.hpp>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/nodes/concat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "common/cpu_memcpy.h"
#include "common/blocked_desc_creator.h"
#include <memory_desc/cpu_memory_desc_utils.h>
#include <partitioned_mem_mgr.h>
#include <partitioned_mem_blk.h>
using namespace dnnl;

namespace ov {
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/nodes/gather.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include "gather.h"

#include <partitioned_mem_mgr.h>
#include <partitioned_mem_blk.h>

#include <cstdint>
#include <openvino/op/constant.hpp>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/nodes/memory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "input.h"
#include "memory_state_base.h"
#include "ov_optional.hpp"
#include "proxy_mem_mgr.h"
#include "proxy_mem_blk.h"

#include <map>

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/nodes/split.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "utils/general_utils.h"
#include <memory_desc/cpu_memory_desc_utils.h>
#include "utils/ngraph_utils.hpp"
#include <partitioned_mem_mgr.h>
#include <partitioned_mem_blk.h>
#include "openvino/op/split.hpp"
#include "openvino/op/variadic_split.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-License-Identifier: Apache-2.0
//

#include "partitioned_mem_mgr.h"
#include "partitioned_mem_blk.h"

using namespace ov::intel_cpu;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-License-Identifier: Apache-2.0
//

#include "proxy_mem_mgr.h"
#include "proxy_mem_blk.h"
#include "utils/debug_capabilities.h"

using namespace ov::intel_cpu;
Expand Down
File renamed without changes.

0 comments on commit 36a3bd8

Please sign in to comment.