You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
things like the memory chart will break with e.g.:
Traceback (most recent call last):
File "~miniconda/envs/omniperf/lib/python3.12/site-packages/flask/app.py", line 1463, in wsgi_app
response = self.full_dispatch_request()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "~miniconda/envs/omniperf/lib/python3.12/site-packages/flask/app.py", line 872, in full_dispatch_request
rv = self.handle_user_exception(e)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "~miniconda/envs/omniperf/lib/python3.12/site-packages/flask/app.py", line 870, in full_dispatch_request
rv = self.dispatch_request()
^^^^^^^^^^^^^^^^^^^^^^^
File "~miniconda/envs/omniperf/lib/python3.12/site-packages/flask/app.py", line 855, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "~miniconda/envs/omniperf/lib/python3.12/site-packages/dash/dash.py", line 1310, in dispatch
ctx.run(
File "~miniconda/envs/omniperf/lib/python3.12/site-packages/dash/_callback.py", line 442, in add_context
output_value = func(*func_args, **func_kwargs) # %% callback invoked %%
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "~miniconda/envs/omniperf/bin/omniperf_analyze/analysis_webui.py", line 162, in generate_from_filter
get_memchart(panel_configs[300]["data source"], base_data[base_run])
File "~miniconda/envs/omniperf/bin/utils/gui_components/memchart.py", line 1954, in get_memchart
insert_chart_data(mem_data, base_data),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "~miniconda/envs/omniperf/bin/utils/gui_components/memchart.py", line 65, in insert_chart_data
children=memchart_values["Wavefront Occupancy"],
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^
KeyError: 'Wavefront Occupancy'
presumably, because we filtered it out already. We should probably ignore any filtering arguments for the GUI, since we let you change the filters there?
Don't need to fix for 2.x tho.
The text was updated successfully, but these errors were encountered:
E.g., if you launch the gui with:
things like the memory chart will break with e.g.:
presumably, because we filtered it out already. We should probably ignore any filtering arguments for the GUI, since we let you change the filters there?
Don't need to fix for 2.x tho.
The text was updated successfully, but these errors were encountered: