We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7580cdc commit 6f5564eCopy full SHA for 6f5564e
discover/types.go
@@ -175,7 +175,7 @@ func (l GpuInfoList) FlashAttentionSupported() bool {
175
supportsFA := gpu.Library == "cpu" ||
176
gpu.Name == "Metal" || gpu.Library == "Metal" ||
177
(gpu.Library == "CUDA" && gpu.DriverMajor >= 7 && !(gpu.ComputeMajor == 7 && gpu.ComputeMinor == 2)) || // We don't have kernels for Jetson Xavier
178
- gpu.Library == "ROCm"
+ gpu.Library == "ROCm" || gpu.Library == "MUSA"
179
180
if !supportsFA {
181
return false
0 commit comments