Skip to content

Commit ee43bb0

Browse files
MoerafaatGoogle-ML-Automation
authored andcommitted
[XLA:GPU/TMA] Disable TMA on B200 due to a timeout failure.
PiperOrigin-RevId: 837146719
1 parent 97a02ea commit ee43bb0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

xla/stream_executor/gpu/tma_metadata.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,11 +460,12 @@ absl::StatusOr<TmaMetadata> TmaMetadata::FromProto(
460460
return metadata;
461461
}
462462

463+
// TODO(b/463912789): Re-enable TMA for Blackwell once the bug is fixed.
463464
bool IsTmaAvailableForDevice(
464465
const stream_executor::DeviceDescription& device_info) {
465466
if (auto* cuda_cc =
466467
device_info.gpu_compute_capability().cuda_compute_capability()) {
467-
return cuda_cc->IsAtLeastHopper();
468+
return cuda_cc->IsHopper();
468469
}
469470
return false;
470471
}

0 commit comments

Comments
 (0)