Spaces:
Sleeping
Sleeping
Commit
Β·
7b3f1e6
1
Parent(s):
774f9d7
update
Browse files
app.py
CHANGED
|
@@ -48,13 +48,14 @@ with demo:
|
|
| 48 |
####################### LEADERBOARD TAB #######################
|
| 49 |
with gr.TabItem("Leaderboard π
", id=0):
|
| 50 |
search_bar, columns_checkboxes, leaderboard_table = create_leaderboard_table(llm_perf_df)
|
|
|
|
| 51 |
lat_score_mem_plot = create_lat_score_mem_plot(llm_perf_df)
|
| 52 |
####################### BETTERTRANSFORMER SPEEDUP TAB #######################
|
| 53 |
-
with gr.TabItem("
|
| 54 |
bt_prefill_plot, bt_decode_plot = create_bt_plots(llm_perf_df)
|
| 55 |
with gr.TabItem("FlashAttentionV2 π", id=3):
|
| 56 |
fa2_prefill_plot, fa2_decode_plot = create_fa2_plots(llm_perf_df)
|
| 57 |
-
with gr.TabItem("
|
| 58 |
quant_prefill_plot, quant_decode_plot = create_quant_plots(llm_perf_df)
|
| 59 |
|
| 60 |
####################### CONTROL CALLBACK #######################
|
|
|
|
| 48 |
####################### LEADERBOARD TAB #######################
|
| 49 |
with gr.TabItem("Leaderboard π
", id=0):
|
| 50 |
search_bar, columns_checkboxes, leaderboard_table = create_leaderboard_table(llm_perf_df)
|
| 51 |
+
with gr.TabItem("Find Your Best Model π§", id=1):
|
| 52 |
lat_score_mem_plot = create_lat_score_mem_plot(llm_perf_df)
|
| 53 |
####################### BETTERTRANSFORMER SPEEDUP TAB #######################
|
| 54 |
+
with gr.TabItem("ScaledDotProductAttention π", id=2):
|
| 55 |
bt_prefill_plot, bt_decode_plot = create_bt_plots(llm_perf_df)
|
| 56 |
with gr.TabItem("FlashAttentionV2 π", id=3):
|
| 57 |
fa2_prefill_plot, fa2_decode_plot = create_fa2_plots(llm_perf_df)
|
| 58 |
+
with gr.TabItem("Quantization Kernels π", id=4):
|
| 59 |
quant_prefill_plot, quant_decode_plot = create_quant_plots(llm_perf_df)
|
| 60 |
|
| 61 |
####################### CONTROL CALLBACK #######################
|