|
4 | 4 |
|
5 | 5 | #pragma once
|
6 | 6 |
|
7 |
| -#include "openvino/runtime/threading/cpu_streams_executor.hpp" |
| 7 | +#include "openvino/runtime/threading/istreams_executor.hpp" |
8 | 8 |
|
9 | 9 | #include "intel_gpu/graph/topology.hpp"
|
10 | 10 | #include "intel_gpu/graph/program.hpp"
|
11 | 11 | #include "intel_gpu/graph/serialization/binary_buffer.hpp"
|
12 |
| -#include "intel_gpu/runtime/compounds.hpp" |
13 | 12 | #include "intel_gpu/runtime/memory.hpp"
|
14 | 13 | #include "intel_gpu/runtime/engine.hpp"
|
15 | 14 | #include "intel_gpu/runtime/event.hpp"
|
16 | 15 | #include "intel_gpu/runtime/stream.hpp"
|
17 |
| -#include "intel_gpu/runtime/lru_cache.hpp" |
18 | 16 | #include "intel_gpu/runtime/shape_predictor.hpp"
|
19 | 17 | #include "intel_gpu/plugin/variable_state.hpp"
|
20 | 18 |
|
@@ -211,7 +209,7 @@ struct network {
|
211 | 209 | bool is_dynamic() const { return _is_dynamic; }
|
212 | 210 | size_t get_weights_cache_capacity() const { return _weights_cache_capacity; }
|
213 | 211 |
|
214 |
| - memory_pool& get_memory_pool() { |
| 212 | + memory_pool& get_memory_pool() const { |
215 | 213 | return *_memory_pool;
|
216 | 214 | }
|
217 | 215 |
|
@@ -284,7 +282,9 @@ struct network {
|
284 | 282 | void dump_memory_pool(std::string dump_path, int64_t curr_iter);
|
285 | 283 |
|
286 | 284 | #ifdef GPU_DEBUG_CONFIG
|
287 |
| - int64_t iteration = 0; |
| 285 | + mutable int64_t iteration = 0; |
| 286 | + friend class NetworkDebugHelper; |
| 287 | + friend class NodeDebugHelper; |
288 | 288 | #endif
|
289 | 289 | };
|
290 | 290 | } // namespace cldnn
|
0 commit comments