Skip to content

Commit

Permalink
Cleaner names
Browse files Browse the repository at this point in the history
  • Loading branch information
Vtec234 committed Sep 25, 2020
1 parent 95ba335 commit 62c6cf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crossbeam-channel/benchmarks/plot.py
Expand Up @@ -99,7 +99,7 @@ def plot(results, fig, subplot, title, prefix):

for pre, test, lang, impl, secs in results:
if pre == prefix:
name = lang + '_' + impl
name = impl if lang == 'Rust' else impl + f' ({lang})'
if name not in scores:
scores[name] = [0] * len(runs)
scores[name][find(runs, test)] = secs
Expand Down

0 comments on commit 62c6cf0

Please sign in to comment.