benchmarks/dash_app/app.py [622:638]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if type(funcs) is str:
        funcs = [funcs]
    try:
        filter_df = func_df[func_df["mode"] == "1pc"]
        func_df_cpu = filter_df[filter_df["device"] == "cpu"]
        start_df = func_df_cpu[func_df_cpu["date"] == start_date]
        end_df = func_df_cpu[func_df_cpu["date"] == end_date]
    except KeyError:
        filter_df = pd.DataFrame()

    if filter_df.empty:
        return render_emtpy_figure()

    fig = make_subplots(
        rows=len(funcs), cols=1, specs=[[{"type": "domain"}] for _ in range(len(funcs))]
    )
    for i, func in enumerate(funcs):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



benchmarks/dash_app/app.py [671:687]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if type(funcs) is str:
        funcs = [funcs]
    try:
        filter_df = func_df[func_df["mode"] == "1pc"]
        func_df_cpu = filter_df[filter_df["device"] == "cpu"]
        start_df = func_df_cpu[func_df_cpu["date"] == start_date]
        end_df = func_df_cpu[func_df_cpu["date"] == end_date]
    except KeyError:
        filter_df = pd.DataFrame()

    if filter_df.empty:
        return render_emtpy_figure()

    fig = make_subplots(
        rows=len(funcs), cols=1, specs=[[{"type": "domain"}] for _ in range(len(funcs))]
    )
    for i, func in enumerate(funcs):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



