Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/test/scripts/performance_test/
Dperformance_config.py138 class LogType(): class
163 LogType.FULL: os.path.join(mail_data_path, 'debug_full_time.csv'),
164 LogType.INCREMENTAL: os.path.join(mail_data_path, 'debug_incremental_time.csv'),
165 LogType.SIZE: os.path.join(mail_data_path, 'debug_size.csv')
168 LogType.FULL: os.path.join(mail_data_path, 'release_full_time.csv'),
169 LogType.INCREMENTAL: os.path.join(mail_data_path, 'release_incremental_time.csv'),
170 LogType.SIZE: os.path.join(mail_data_path, 'release_size.csv')
176 LogType.FULL:os.path.join(mail_data_path, 'debug_full_time.jpg'),
177 LogType.INCREMENTAL: os.path.join(mail_data_path, 'debug_incremental_time.jpg'),
178 LogType.SIZE: os.path.join(mail_data_path, 'debug_size.jpg')
[all …]
Dperformance_build.py417 if log_type == performance_config.LogType.FULL:
419 performance_config.LogType.FULL, aot_mode)
421 performance_config.LogType.INCREMENTAL, aot_mode)
443 self.error_handle(is_debug, performance_config.LogType.FULL, aot_mode)
450 self.error_handle(is_debug, performance_config.LogType.INCREMENTAL, aot_mode)
Dperformance_entry.py94 …build_type_info = 'full_build' if log_type == performance_config.LogType.FULL else 'incremental_bu…
188 … y_lable = 'build time (s)' if log_type < performance_config.LogType.SIZE else 'size (Byte)'