[GPU] Adjust build batch size to 9 from 10 due to the compiler limitation w.r.t the entire module size (#10450)

This commit is contained in:
Taylor Yeonbok Lee
2022-02-17 17:01:31 +09:00
committed by GitHub
parent 861d43e06d
commit d35335193a

View File

@@ -148,7 +148,7 @@ bool kernels_cache::is_cache_enabled() const {
}
size_t kernels_cache::get_max_kernels_per_batch() const {
return 10;
return 9;
}