IlyasMoutawwakil HF staff commited on
Commit
7b3f1e6
β€’
1 Parent(s): 774f9d7
Files changed (1) hide show
  1. app.py +3 -2
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("BetterTransformer πŸ“ˆ", id=2):
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("Custom Quantization Kernels πŸ“ˆ", id=4):
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 #######################