Skip to content

Commit

Permalink
Merge pull request #1060 from elezar/add-ada-lovelace-label
Browse files Browse the repository at this point in the history
Add ada architecture label for compute capability 8.9
  • Loading branch information
elezar authored Dec 6, 2024
2 parents b6b81a6 + aaccdfd commit 44b263c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion internal/lm/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,10 @@ func getArchFamily(computeMajor, computeMinor int) string {
}
return "turing"
case 8:
return "ampere"
if computeMinor < 9 {
return "ampere"
}
return "ada-lovelace"
case 9:
return "hopper"
}
Expand Down

0 comments on commit 44b263c

Please sign in to comment.