Home
last modified time | relevance | path

Searched refs:AotMode (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_frontend/test/scripts/performance_test/
Dperformance_entry.py59 if aot_mode == performance_config.AotMode.NoAOT:
65 self.create_table(MailHelper.get_project_name(prj_name, performance_config.AotMode.Type))
95 aot_info = 'no_aot' if aot_type == performance_config.AotMode.NoAOT else 'aot_type'
Dperformance_build.py400 if aot_mode == performance_config.AotMode.Type:
459 self.full_and_incremental_build(True, performance_config.AotMode.NoAOT)
460 self.full_and_incremental_build(False, performance_config.AotMode.NoAOT)
461 self.full_and_incremental_build(True, performance_config.AotMode.Type)
462 self.full_and_incremental_build(False, performance_config.AotMode.Type)
463 self.set_aot_mode(performance_config.AotMode.NoAOT)
Dperformance_config.py25 class AotMode(): class