File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
crates/blockifier/src/state Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 137137 "batcher_config.contract_class_manager_config.cairo_native_run_config.channel_size" : {
138138 "description" : " The size of the compilation request channel." ,
139139 "privacy" : " Public" ,
140- "value" : 1000
140+ "value" : 2000
141141 },
142142 "batcher_config.contract_class_manager_config.cairo_native_run_config.run_cairo_native" : {
143143 "description" : " Enables Cairo native execution." ,
152152 "batcher_config.contract_class_manager_config.contract_cache_size" : {
153153 "description" : " The size of the global contract cache." ,
154154 "privacy" : " Public" ,
155- "value" : 400
155+ "value" : 600
156156 },
157157 "batcher_config.contract_class_manager_config.native_compiler_config.max_casm_bytecode_size" : {
158158 "description" : " Limitation of compiled casm bytecode size." ,
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ use crate::execution::native::contract_class::NativeCompiledClassV1;
2727#[ cfg( feature = "cairo_native" ) ]
2828use crate :: state:: global_cache:: CachedCairoNative ;
2929use crate :: state:: global_cache:: { CachedCasm , ContractCaches } ;
30- pub const DEFAULT_COMPILATION_REQUEST_CHANNEL_SIZE : usize = 1000 ;
30+ pub const DEFAULT_COMPILATION_REQUEST_CHANNEL_SIZE : usize = 2000 ;
3131
3232/// Represents a request to compile a sierra contract class to a native compiled class.
3333///
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ pub enum CachedCairoNative {
3636 CompilationFailed ,
3737}
3838
39- pub const GLOBAL_CONTRACT_CACHE_SIZE_FOR_TEST : usize = 400 ;
39+ pub const GLOBAL_CONTRACT_CACHE_SIZE_FOR_TEST : usize = 600 ;
4040
4141impl < T : Clone > GlobalContractCache < T > {
4242 /// Locks the cache for atomic access. Although conceptually shared, writing to this cache is
You can’t perform that action at this time.
0 commit comments