Skip to content

Commit f666bc3

Browse files
authored
Merge pull request #1237 from NVIDIA/blackwell-arch
[gpu-feature-discovery] detect blackwell architecture
2 parents 45e4420 + c7883ee commit f666bc3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

internal/lm/resource.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,9 @@ func getArchFamily(computeMajor, computeMinor int) string {
304304
return "ada-lovelace"
305305
case 9:
306306
return "hopper"
307+
// The Blackwell GPU family is bifurcated into two cuda compute capabilities 10.0 and 12.0
308+
case 10, 12:
309+
return "blackwell"
307310
}
308311
return "undefined"
309312
}

0 commit comments

Comments
 (0)