BenchmarkBot commited on
Commit
e91459d
Β·
1 Parent(s): 21032bf

add columns

Browse files
Files changed (1) hide show
  1. app.py +16 -14
app.py CHANGED
@@ -80,20 +80,22 @@ with demo:
80
 
81
  with gr.Row():
82
  with gr.Box(elem_id="search-bar-table-box"):
83
- search_bar = gr.Textbox(
84
- label="Search πŸ”Ž",
85
- info="Search for a model",
86
- placeholder="Write and press ENTER...",
87
- elem_id="search-bar",
88
- )
89
- backend_checkboxes = gr.CheckboxGroup(
90
- choices=["pytorch", "onnxruntime"],
91
- value=["pytorch", "onnxruntime"],
92
- label="Backends 🏭",
93
- info="Select the backends",
94
- elem_id="backend-checkboxes",
95
-
96
- )
 
 
97
 
98
  with gr.Tabs(elem_classes="tab-buttons") as tabs:
99
  with gr.TabItem("πŸ–₯️ A100-80GB Benchmark πŸ‹οΈ", elem_id="A100-benchmark", id=0):
 
80
 
81
  with gr.Row():
82
  with gr.Box(elem_id="search-bar-table-box"):
83
+ with gr.Column():
84
+ search_bar = gr.Textbox(
85
+ label="Search πŸ”Ž",
86
+ info="Search for a model",
87
+ placeholder="Write and press ENTER...",
88
+ elem_id="search-bar",
89
+ )
90
+ with gr.Column():
91
+ backend_checkboxes = gr.CheckboxGroup(
92
+ choices=["pytorch", "onnxruntime"],
93
+ value=["pytorch", "onnxruntime"],
94
+ label="Backends 🏭",
95
+ info="Select the backends",
96
+ elem_id="backend-checkboxes",
97
+
98
+ )
99
 
100
  with gr.Tabs(elem_classes="tab-buttons") as tabs:
101
  with gr.TabItem("πŸ–₯️ A100-80GB Benchmark πŸ‹οΈ", elem_id="A100-benchmark", id=0):