Skip to content

Commit

Permalink
add t4
Browse files Browse the repository at this point in the history
  • Loading branch information
baptistecolle committed Aug 1, 2024
1 parent a4272c3 commit 6a4bf71
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/update_llm_perf_cuda_pytorch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ jobs:
fail-fast: false
matrix:
subset: [unquantized, bnb, awq, gptq]
# { name: 1xA10, runs-on: ... },
machine: [{ name: 1xT4, runs-on: { group: 'aws-g4dn-2xlarge' } }]

machine: [
# {name: 1xA10, runs-on: {group: 'aws-g5-4xlarge-plus'}},
{name: 1xT4, runs-on: {group: 'aws-g4dn-2xlarge'}}
]

runs-on: ${{ matrix.machine.runs-on }}

Expand Down
2 changes: 1 addition & 1 deletion llm_perf/update_llm_perf_leaderboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def gather_benchmarks(subset: str, machine: str):

def update_perf_dfs():
for subset in ["unquantized", "bnb", "awq", "gptq"]:
for machine in ["1xA10", "1xA100"]:
for machine in ["1xA10", "1xA100", "1xT4"]:
try:
gather_benchmarks(subset, machine)
except Exception:
Expand Down

0 comments on commit 6a4bf71

Please sign in to comment.