Skip to content

Commit

Permalink
Address reviewer feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
rfbgo committed Nov 15, 2024
1 parent 0c2fbf9 commit b4e4730
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
4 changes: 0 additions & 4 deletions lib/ramble/docs/results.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,6 @@ Multiple plot types are supported, to aid in comparison of runs and common tasks
For these plots, common operations are supported such as log axis, data
grouping, and idealized line plotting.

While this functionality is very useful and powerful, it is not intended as a
wholesale replacement for uploading the data into more advanced offline
analysis tools.

^^^^^^^^^^^^^^^
Strong and Weak Scaling Plots
^^^^^^^^^^^^^^^
Expand Down
11 changes: 5 additions & 6 deletions lib/ramble/ramble/test/reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,13 +217,12 @@ def test_scaling_plots(mutable_mock_workspace_path, tmpdir_factory, values):
logy = False
split_by = "simplified_workload_namespace"

where_query = None
results_df = prepare_data(results, where_query)
plot = plot_type(test_spec, normalize, report_dir_path, results_df, logx, logy, split_by)

with PdfPages(pdf_path) as pdf_report:
where_query = None
results_df = prepare_data(results, where_query)
plot = plot_type(
test_spec, normalize, report_dir_path, pdf_report, results_df, logx, logy, split_by
)
plot.generate_plot_data()
plot.generate_plot_data(pdf_report)

# Sort columns alphabetically, order is not important
plot.output_df.sort_index(axis=1, inplace=True)
Expand Down

0 comments on commit b4e4730

Please sign in to comment.