-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Shuffle post-processing related tutorial files around.
- Loading branch information
Showing
4 changed files
with
45 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"]] |