google_benchmark_plot icon indicating copy to clipboard operation
google_benchmark_plot copied to clipboard

A handy script to visualize google benchmark output

Results 3 google_benchmark_plot issues
Sort by recently updated
recently updated
newest added

``` py.exe google_benchmark_plot/plot.py -f test.csv -r 'BM_MyTest' ``` results in ``` Traceback (most recent call last): File "google_benchmark_plot/plot.py", line 123, in main() File "google_benchmark_plot/plot.py", line 118, in main label_groups[label][args.metric] /=...

waiting-for-response

Using the [BENCHMARK_CAPTURE](https://github.com/google/benchmark#passing-arbitrary-arguments-to-a-benchmark) macro adds another level to the benchmark name so the results show as function/benchmark_name/input_size which interfere with the parsing. This PR fixes this issue in a backward...

* input size is the last part of the name * label is everything before the last slash