6

我在这里找到了一些使用标准的旧示例。看起来好像早在 2009 年它就支持用于绘制图形的命令行选项。

现在,当我导入标准 0.6 时,将其包装在一个基本应用程序中(以对其进行测试)并说 ./application --help 它只提供很少的可用选项,并且与绘图无关。在我看来,就输出格式和功能而言,2009 年的功能比 2012 年的要多?

似乎有一个criteria-to-html可以创建基本的html 报告,但没有任何东西接近例如上述网站上或标准源数据包的示例目录中显示的png 输出。

我在哪里可以找到准确和最新的信息?

./application --help

Usage: application [OPTIONS] [BENCHMARKS]
  -h, -?       --help               print help, then exit
  -G           --no-gc              do not collect garbage between iterations
  -g           --gc                 collect garbage between iterations
  -I CI        --ci=CI              bootstrap confidence interval
  -l           --list               print only a list of benchmark names
  -o FILENAME  --output=FILENAME    report file to write to
  -q           --quiet              print less output
               --resamples=N        number of bootstrap resamples to perform
  -s N         --samples=N          number of samples to collect
  -t FILENAME  --template=FILENAME  template file to use
  -u FILENAME  --summary=FILENAME   produce a summary CSV file of all results
  -V           --version            display version, then exit
  -v           --verbose            print more output
If no benchmark names are given, all are run
Otherwise, benchmarks are run by prefix match


 ./application -k win
Error: unrecognized option `-k'
Run "application --help" for usage information
4

1 回答 1

2

正如评论中链接的单子一样 - Criterion 不再支持图表(通过图表库)。它提供的最好的是 CSV 输出和HTML 输出,两者都非常有用。CSV 输出可以使用任何你想要的东西(pgfplots、Chart、gnuplot 等)来绘制,但需要进行一些解析。HTML 非常好,如果您不寻找任何自动化的东西,您可以截屏。

如果您有时间,那么也许您可以构建/上传一个读取 Criterion CSV 并通过 Chart 生成旧条形图的包(甚至更好的条形图!)。

于 2012-03-16T03:02:31.073 回答