Skip to content
Snippets Groups Projects
Commit 467e0beb authored by Christoph Alt's avatar Christoph Alt
Browse files

actually using gpu panels in profile dashboard

parent 2ddf2084
No related branches found
No related tags found
No related merge requests found
Pipeline #56339 passed
...@@ -205,21 +205,18 @@ def dashboard_uniformgridgpu_profile(): ...@@ -205,21 +205,18 @@ def dashboard_uniformgridgpu_profile():
Filter("periodic_2"), Filter("periodic_2"),
] ]
fields = [ fields = [PanelInfos(runtime_key, Units.seconds),
PanelInfos("mlupsPerProcess", Units.number), PanelInfos(dp_key, Units.mflop_sec),
PanelInfos("Runtime (RDTSC) [s]", Units.seconds), PanelInfos(p_max_key, Units.mflop_sec),
PanelInfos("DP [MFLOP/s]", Units.mflop_sec), PanelInfos(f'{dp_key}"/"{p_max_key}', Units.percent),
PanelInfos("Operational intensity", Units.flop_per_byte), PanelInfos(operational_intensity_key, Units.flop_per_byte),
PanelInfos('AVX DP [MFLOP/s]" / "DP [MFLOP/s]', Units.percent), PanelInfos(memory_bandwidth_key, Units.mbytes_per_second),
PanelInfos('Memory bandwidth [MBytes/s]', Units.mbytes_per_second), PanelInfos(memory_write_bandwidth_key, Units.mbytes_per_second),
PanelInfos('Memory write bandwidth [MBytes/s]', Units.mbytes_per_second), PanelInfos(memory_read_bandwidth_key, Units.mbytes_per_second),
PanelInfos('Memory read bandwidth [MBytes/s]', Units.mbytes_per_second), PanelInfos(memory_data_key, Units.gigabyte),
PanelInfos('Memory data volume [GBytes]', Units.gigabyte), PanelInfos(memory_write_data_key, Units.gigabyte),
PanelInfos('Memory read data volume [GBytes]', Units.gigabyte), PanelInfos(memory_read_data_key, Units.gigabyte),
PanelInfos('Memory write data volume [GBytes]', Units.gigabyte), ]
PanelInfos('Energy [J]', Units.joule),
PanelInfos('Power [W]', Units.watt),
PanelInfos('Clock [MHz] STAT Avg', Units.megahertz), ]
filter_vars = [get_dashboard_variable(filter, measurment_name, data_source) for filter in filters] filter_vars = [get_dashboard_variable(filter, measurment_name, data_source) for filter in filters]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment