@@ -311,7 +311,7 @@ async def run(self, fuzzer, env=None):
311311 # tuna has ~32gb per 8 cores ( 32GB, 8 cores)
312312 # alfred has 128gb per 8 cores ( 2TB, 128 cores)
313313 # srv-23- has ~32gb per 8 cores (768GB, 192 cores)
314- fuzzer_cmd += ["--memory" , "16g " ]
314+ fuzzer_cmd += ["--memory" , "8g " ]
315315 fuzzer_cmd += ["--network" , "none" ]
316316 fuzzer_cmd += ["--log-driver" , "none" ] # afl++ people say that docker's log infra causes performance issues?
317317 if self .core_ids :
@@ -369,8 +369,10 @@ async def run_target(target, fuzzer, config=None, num_cores=1):
369369 config_env = {"FUZZER_CONFIG" : None , "FUZZER_CORES" : str (num_cores )}
370370 if config is not None :
371371 if isinstance (config , str ) and config .startswith ("pass-ablation-" ):
372- config_env ["FUZZER_PASS_ABLATION" ] = config .removeprefix ("pass-ablation-" )
372+ pass_ = config .removeprefix ("pass-ablation-" )
373+ config_env ["FUZZER_PASS_ABLATION" ] = pass_
373374 config = "pass-ablation"
375+ config = dict (name = f"pass-ablation-{ pass_ } " , config = config , args = f"--experiment={ config } " )
374376 if isinstance (config , str ) and fuzzer == "wasmfuzz" :
375377 config = dict (name = config , config = config , args = f"--experiment={ config } " )
376378 if isinstance (config , str ):
0 commit comments