帮助信息
帮助命令:llvm-autotune -h。llvm-autotune 执行格式如下所示:
llvm-autotune [-h] {minimize,maximize,feedback,dump,finalize}
可选指令:
- minimize:初始化调优并生成初始的编译器配置文件,旨在最小化指标(例如运行时间)。
- maximize:初始化调优并生成初始的编译器配置文件,旨在最大程度地提高指标(例如吞吐量)。
- feedback:反馈性能调优结果并生成新的编译器配置。
- dump:生成当前的最优配置,而不终止调优(可继续执行feedback)。
- finalize: 终止调优,并生成最佳的编译器配置(不可再执行feedback)。
帮助信息:
- --help/-h
usage: llvm-autotune [-h] {minimize,maximize,feedback,dump,finalize} ... positional arguments: {minimize,maximize,feedback,dump,finalize} minimize Initialize tuning and generate the initial compiler configuration file, aiming to minimize the metric (e.g. run time) maximize Initialize tuning and generate the initial compiler configuration file, aiming to maximize the metric (e.g. throughput) feedback Feed back performance tuning result and generate a new test configuration dump Dump the current best configuration without terminating the tuning run finalize Finalize tuning and generate the optimal compiler configuration optional arguments: -h, --help show this help message and exit
父主题: llvm-autotune