ursabot commented on pull request #7442: URL: https://github.com/apache/arrow/pull/7442#issuecomment-644892202
``` Usage: @ursabot benchmark [OPTIONS] [<baseline>] Run the benchmark suite in comparison mode. This command will run the benchmark suite for tip of the branch commit against `<baseline>` (or master if not provided). Examples: # Run the all the benchmarks @ursabot benchmark # Compare only benchmarks where the name matches the /^Sum/ regex @ursabot benchmark --benchmark-filter=^Sum # Compare only benchmarks where the suite matches the /compute-/ regex. # A suite is the C++ binary. @ursabot benchmark --suite-filter=compute- # Sometimes a new optimization requires the addition of new benchmarks to # quantify the performance increase. When doing this be sure to add the # benchmark in a separate commit before introducing the optimization. # # Note that specifying the baseline is the only way to compare using a new # benchmark, since master does not contain the new benchmark and no # comparison is possible. # # The following command compares the results of matching benchmarks, # compiling against HEAD and the provided baseline commit, e.g. eaf8302. # You can use this to quantify the performance improvement of new # optimizations or to check for regressions. @ursabot benchmark --benchmark-filter=MyBenchmark eaf8302 Options: --suite-filter <regex> Regex filtering benchmark suites. --benchmark-filter <regex> Regex filtering benchmarks. --help Show this message and exit. ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org