aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2019-06-29 16:32:16 +0200
committerCyril SIX <cyril.six@kalray.eu>2019-06-29 16:32:16 +0200
commit9fcc2c04f952b2be11720867439e03b1d1badcf5 (patch)
treef23b26c9036e4d78c55b62f0d31678e2085809f4
parent0e0b7585d99c90b9dcf012d05beb630a4e5b6de1 (diff)
downloadcompcert-kvx-9fcc2c04f952b2be11720867439e03b1d1badcf5.tar.gz
compcert-kvx-9fcc2c04f952b2be11720867439e03b1d1badcf5.zip
Removing titles on graphs
-rwxr-xr-xtest/monniaux/gencompile.py1
-rwxr-xr-xtest/monniaux/gengraphs.py1
2 files changed, 0 insertions, 2 deletions
diff --git a/test/monniaux/gencompile.py b/test/monniaux/gencompile.py
index 739e535a..bee1c924 100755
--- a/test/monniaux/gencompile.py
+++ b/test/monniaux/gencompile.py
@@ -41,7 +41,6 @@ do_plot(verifier_coords, "b+", "Verifier")
do_plot(oracle_coords, "g+", "Oracle")
ax.set_ylabel("Time x1000 (s)")
-ax.set_title("Scheduling pass time")
ax.set_xlabel("Size of basic blocks")
ax.legend()
diff --git a/test/monniaux/gengraphs.py b/test/monniaux/gengraphs.py
index afcb6cfd..3236f565 100755
--- a/test/monniaux/gengraphs.py
+++ b/test/monniaux/gengraphs.py
@@ -86,7 +86,6 @@ def generate_file(f: str, cols: List[str]) -> None:
# Add some text for labels, title and custom x-axis tick labels, etc.
ax.set_ylabel('1/cycles (%)')
ax.set_yticklabels(['{:,.0%}'.format(x) for x in ax.get_yticks()])
- ax.set_title('TITLE')
ax.set_xticks(ind)
ax.set_xticklabels(benches)
ax.legend()