Skip to content

Commit c863a35

Browse files
committed
test
1 parent a7d5dc5 commit c863a35

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

.github/configs/nvidia-master.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3233,21 +3233,21 @@ gptoss-fp4-h100-vllm:
32333233
- isl: 1024
32343234
osl: 1024
32353235
search-space:
3236-
- { tp: 2, conc-start: 4, conc-end: 64 }
3237-
- { tp: 4, conc-start: 4, conc-end: 64 }
3238-
- { tp: 8, conc-start: 4, conc-end: 64 }
3239-
- isl: 1024
3240-
osl: 8192
3241-
search-space:
3242-
- { tp: 2, conc-start: 4, conc-end: 64 }
3243-
- { tp: 4, conc-start: 4, conc-end: 64 }
3244-
- { tp: 8, conc-start: 4, conc-end: 64 }
3245-
- isl: 8192
3246-
osl: 1024
3247-
search-space:
3248-
- { tp: 2, conc-start: 4, conc-end: 64 }
3249-
- { tp: 4, conc-start: 4, conc-end: 64 }
3250-
- { tp: 8, conc-start: 4, conc-end: 16 }
3236+
- { tp: 2, conc-start: 4, conc-end: 4 }
3237+
# - { tp: 4, conc-start: 4, conc-end: 64 }
3238+
# - { tp: 8, conc-start: 4, conc-end: 64 }
3239+
# - isl: 1024
3240+
# osl: 8192
3241+
# search-space:
3242+
# - { tp: 2, conc-start: 4, conc-end: 64 }
3243+
# - { tp: 4, conc-start: 4, conc-end: 64 }
3244+
# - { tp: 8, conc-start: 4, conc-end: 64 }
3245+
# - isl: 8192
3246+
# osl: 1024
3247+
# search-space:
3248+
# - { tp: 2, conc-start: 4, conc-end: 64 }
3249+
# - { tp: 4, conc-start: 4, conc-end: 64 }
3250+
# - { tp: 8, conc-start: 4, conc-end: 16 }
32513251

32523252
minimaxm2.5-fp8-h100-vllm:
32533253
image: vllm/vllm-openai:v0.16.0

utils/compare_results.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ def parse_bool(value):
1717
def colorize_delta(text, delta):
1818
"""Wrap delta text in green (positive) or red (negative) using LaTeX color syntax for GitHub markdown."""
1919
if delta > 0:
20-
return f"${{\\color{{green}}{text}}}$"
20+
return f"$\\color{{green}}\\textsf{{{text}}}$"
2121
elif delta < 0:
22-
return f"${{\\color{{red}}{text}}}$"
22+
return f"$\\color{{red}}\\textsf{{{text}}}$"
2323
return text
2424

2525

0 commit comments

Comments
 (0)