Skip to content

Commit

Permalink
Merge pull request #4262 from vespa-engine/geirst/inc-figure-resolution
Browse files Browse the repository at this point in the history
Increase resolution on figures generated.
  • Loading branch information
Jo Kristian Bergum authored Nov 8, 2024
2 parents 5c00b19 + a0d7055 commit 8c095ac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/performance/ecommerce_hybrid_search/create_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def generate_feed_summary_figure(vespa_file, es_file, output):
orientation='h'
)
)
fig.write_image(file_name, format='png', scale=1.5)
fig.write_image(file_name, format='png', scale=1.8)


def generate_query_summary_figure(title, file_name, df, text_label_font_size=7):
Expand Down Expand Up @@ -283,7 +283,7 @@ def generate_query_summary_figure(title, file_name, df, text_label_font_size=7):
orientation='h'
)
)
fig.write_image(file_name, format='png', scale=1.5)
fig.write_image(file_name, format='png', scale=1.8)


def generate_query_qps_figure(title, file_name, df):
Expand All @@ -310,7 +310,7 @@ def generate_query_qps_figure(title, file_name, df):
orientation='h'
)
)
fig.write_image(file_name, format='png', scale=1.5)
fig.write_image(file_name, format='png', scale=1.8)


def generate_overall_qps_figure(output, df):
Expand All @@ -337,7 +337,7 @@ def generate_overall_qps_figure(output, df):
orientation='h'
)
)
fig.write_image(file_name, format='png', scale=1.5)
fig.write_image(file_name, format='png', scale=1.8)


def generate_query_figures(vespa_file, es_files, output):
Expand Down Expand Up @@ -429,7 +429,7 @@ def generate_overall_summary_figure(vespa_file, es_files, output):
)
]
)
fig.write_image(file_name, format='png', scale=1.5)
fig.write_image(file_name, format='png', scale=1.8)


def main():
Expand Down

0 comments on commit 8c095ac

Please sign in to comment.