Skip to content

Commit

Permalink
Shuffle post-processing related tutorial files around.
Browse files Browse the repository at this point in the history
  • Loading branch information
ilectra committed Nov 30, 2023
1 parent 182bdbc commit 6d8fdb8
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 15 deletions.
45 changes: 30 additions & 15 deletions post-processing/post_processing_config.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,30 @@
title: "Performance vs number of tasks and CPUs_per_task"

x_axis:
value: "tasks"
units:
custom: null

y_axis:
value: "flops_value"
units:
column: "flops_unit"

filters: [["tags", "==", "example"]]

series: [["cpus_per_task", "1"], ["cpus_per_task", "2"]]
# Plot title
title: Example Plot

# Axes must have a value specified with a perflog column name or a
# benchmark parameter name (denoted by a "%" in the perflog "info"
# and "display_name" fields, if it exists).
# Units can either be specified with a perflog column name
# or a custom label (including null (i.e. None) if units are N/A).

x_axis:
value: "tasks"
units:
custom: null

y_axis:
value: "flops_value"
units:
column: "flops_unit"

# Optional row filters (specify an empty list [] if none are required)
# Filter format: [column_name, operator, value]
filters: [["system", "==", "default"]]

# Optional setting to display several plots in the same graph.
# Number of series, if used, must be >=2 (specify an empty list [] if there is only one series).
# Do not use more than two distinct column names in this list -
# bokeh can only handle 3 x-axis groups (2 series columns + 1 x-axis column).
# NOTE: For now, only one distinct column name is supported.
# Series format: [column_name, value]
series: [["cpus_per_task", "1"], ["cpus_per_task", "2"]]
File renamed without changes.
15 changes: 15 additions & 0 deletions tutorial/post_processing_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
title: "Performance vs number of tasks and CPUs_per_task"

x_axis:
value: "tasks"
units:
custom: null

y_axis:
value: "flops_value"
units:
column: "flops_unit"

filters: [["tags", "==", "example"]]

series: [["cpus_per_task", "1"], ["cpus_per_task", "2"]]

0 comments on commit 6d8fdb8

Please sign in to comment.