google_benchmark_plot
                                
                                
                                
                                    google_benchmark_plot copied to clipboard
                            
                            
                            
                        A handy script to visualize google benchmark output
``` 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] /=...
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