Skip to content

Commit

Permalink
[GPU] Change default capacity of impls cache (openvinotoolkit#22200)
Browse files Browse the repository at this point in the history
+ Change 1000 to 300 to reduce memory usage.
  • Loading branch information
jade-cho authored Jan 17, 2024
1 parent a6c6915 commit 563efc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/intel_gpu/include/intel_gpu/graph/program.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ struct program {
// if subgraph can be optimized if it consists of only inputs and corresponding outputs
bool _can_be_optimized;
std::unique_ptr<ImplementationsCache> _impls_cache;
const size_t _impls_cache_capacity = 10000;
const size_t _impls_cache_capacity = 300;
std::shared_ptr<ICompilationContext> _compilation_context;
bool _loaded_from_cache = false;

Expand Down

0 comments on commit 563efc6

Please sign in to comment.