Skip to content

Commit

Permalink
added 1xA100 (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyasMoutawwakil authored May 16, 2024
1 parent 6351381 commit 9b28308
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions llm_perf/update_llm_perf_leaderboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,8 @@ def gather_benchmarks(subset: str, machine: str):


for subset in ["unquantized", "bnb", "awq", "gptq"]:
for machine in ["1xA10"]:
gather_benchmarks(subset, machine)
for machine in ["1xA10", "1xA100"]:
try:
gather_benchmarks(subset, machine)
except Exception:
print(f"Subset {subset} for machine {machine} not found")

0 comments on commit 9b28308

Please sign in to comment.