[libc-commits] [libc] 25d759c - [libc] Make benchmark boxplots transparent.
Anthony Steinhauser via libc-commits
libc-commits at lists.llvm.org
Mon Aug 17 07:34:45 PDT 2020
Author: Anthony Steinhauser
Date: 2020-08-17T07:34:26-07:00
New Revision: 25d759c143ce0cd82928ff5e3713d48f31ee5696
URL: https://github.com/llvm/llvm-project/commit/25d759c143ce0cd82928ff5e3713d48f31ee5696
DIFF: https://github.com/llvm/llvm-project/commit/25d759c143ce0cd82928ff5e3713d48f31ee5696.diff
LOG: [libc] Make benchmark boxplots transparent.
So that the configuration box does not make a part of the plot invisible.
Reviewers: sivachandra
Differential Revision: https://reviews.llvm.org/D85953
Added:
Modified:
libc/benchmarks/render.py3
Removed:
################################################################################
diff --git a/libc/benchmarks/render.py3 b/libc/benchmarks/render.py3
index f8c321ff17af..688bf7e40553 100644
--- a/libc/benchmarks/render.py3
+++ b/libc/benchmarks/render.py3
@@ -149,7 +149,7 @@ def setup_graphs(files, display):
horizontalalignment="right",
multialignment="left",
fontsize="small",
- bbox=dict(boxstyle="round", facecolor="wheat"))
+ bbox=dict(boxstyle="round", facecolor="wheat", alpha=0.5))
axes = plt.gca()
axes.set_title(get_title(get_host(jsons)))
More information about the libc-commits
mailing list