Commit
·
2507b23
1
Parent(s):
5ae48b5
update
Browse files- src/display/about.py +7 -4
- src/display/utils.py +1 -1
src/display/about.py
CHANGED
|
@@ -18,10 +18,13 @@ Columns and Metrics:
|
|
| 18 |
- Method: The MOE LLMs inference framework.
|
| 19 |
- E2E(s): Average End to End generation time in seconds.
|
| 20 |
- PRE(s): Prefilling Time of input prompt in seconds.
|
| 21 |
-
- T/s: Tokens throughout per second.
|
| 22 |
-
- S-MBU(%): Sparse Model Bandwidth Utilization.
|
| 23 |
-
- S-MFU(%): Sparse Model FLOPs Utilization.
|
| 24 |
-
-
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
"""
|
| 27 |
|
|
|
|
| 18 |
- Method: The MOE LLMs inference framework.
|
| 19 |
- E2E(s): Average End to End generation time in seconds.
|
| 20 |
- PRE(s): Prefilling Time of input prompt in seconds.
|
| 21 |
+
- Decoding T/s: Tokens throughout per second for decoding.
|
| 22 |
+
- Decoding S-MBU(%): Sparse Model Bandwidth Utilization for decoding.
|
| 23 |
+
- Decoding S-MFU(%): Sparse Model FLOPs Utilization for decoding.
|
| 24 |
+
- Prefill T/s: Tokens throughout per second for Prefilling.
|
| 25 |
+
- Prefill S-MBU(%): Sparse Model Bandwidth Utilization for Prefilling.
|
| 26 |
+
- Prefill S-MFU(%): Sparse Model FLOPs Utilization for Prefilling.
|
| 27 |
+
- Precision: The precision of used model.
|
| 28 |
|
| 29 |
"""
|
| 30 |
|
src/display/utils.py
CHANGED
|
@@ -125,9 +125,9 @@ for task in Tasks:
|
|
| 125 |
# auto_eval_column_dict.append([f"{task.name}_gpu_mem", ColumnContent, ColumnContent(f"{task.value.col_name} {GPU_Mem}", "number", True, hidden=True)])
|
| 126 |
auto_eval_column_dict.append([f"{task.name}_gpu", ColumnContent, ColumnContent(f"{task.value.col_name} {GPU_Name}", "str", True, hidden=True)])
|
| 127 |
# auto_eval_column_dict.append([f"{task.name}_gpu_util", ColumnContent, ColumnContent(f"{task.value.col_name} {GPU_Util}", "number", True, hidden=True)])
|
|
|
|
| 128 |
if task.value.benchmark in MULTIPLE_CHOICEs:
|
| 129 |
continue
|
| 130 |
-
auto_eval_column_dict.append([f"{task.name}_prefilling_time", ColumnContent, ColumnContent(f"{task.value.col_name} {PREs}", "number", False, hidden=True)])
|
| 131 |
auto_eval_column_dict.append([f"{task.name}_decoding_throughput", ColumnContent, ColumnContent(f"{task.value.col_name} {TS}", "number", True, hidden=True)])
|
| 132 |
# if task.value.benchmark != "gsm8k_custom":
|
| 133 |
# continue
|
|
|
|
| 125 |
# auto_eval_column_dict.append([f"{task.name}_gpu_mem", ColumnContent, ColumnContent(f"{task.value.col_name} {GPU_Mem}", "number", True, hidden=True)])
|
| 126 |
auto_eval_column_dict.append([f"{task.name}_gpu", ColumnContent, ColumnContent(f"{task.value.col_name} {GPU_Name}", "str", True, hidden=True)])
|
| 127 |
# auto_eval_column_dict.append([f"{task.name}_gpu_util", ColumnContent, ColumnContent(f"{task.value.col_name} {GPU_Util}", "number", True, hidden=True)])
|
| 128 |
+
auto_eval_column_dict.append([f"{task.name}_prefilling_time", ColumnContent, ColumnContent(f"{task.value.col_name} {PREs}", "number", False, hidden=True)])
|
| 129 |
if task.value.benchmark in MULTIPLE_CHOICEs:
|
| 130 |
continue
|
|
|
|
| 131 |
auto_eval_column_dict.append([f"{task.name}_decoding_throughput", ColumnContent, ColumnContent(f"{task.value.col_name} {TS}", "number", True, hidden=True)])
|
| 132 |
# if task.value.benchmark != "gsm8k_custom":
|
| 133 |
# continue
|