Set high ECO effort on modulesUsage:
set_high_effort(@options); @options: -help: Print this information -include module_list: Only set high ECO effort on the modules listed, module_list has format of module names separated by ',', wild card is acceptable For example, 'mem_control,dma_*' -exclude module_list: Exclude high ECO effort on the modules listed module_list has format of module names separated by ',', wild card is acceptable For example, 'mem_control,dma_*' -timeout time_in_seconds: Set time out for each run, default to time out in 900 seconds time_in_seconds is an integer indicating time out in secondsExamples:
\#1. Set ECO high effort on all modules under ECO set_high_effort();#2. Set ECO high effort on module 'mem_control_1' set_high_effort('-include', 'mem_control_1');
#3. Set ECO high effort on modules matching 'memcontrol' and modules matching 'dma_' set_high_effort('-include', 'memcontrol,dma_');
#4. Enable ECO high effort, but excluding module 'mem_control_1 ' set_high_effort('-exclude', 'mem_control_1');
#5. Enable ECO high effort with time out in 600 seconds set_high_effort('-timeout', 600);