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 97a02ea commit ee43bb0Copy full SHA for ee43bb0
xla/stream_executor/gpu/tma_metadata.cc
@@ -460,11 +460,12 @@ absl::StatusOr<TmaMetadata> TmaMetadata::FromProto(
460
return metadata;
461
}
462
463
+// TODO(b/463912789): Re-enable TMA for Blackwell once the bug is fixed.
464
bool IsTmaAvailableForDevice(
465
const stream_executor::DeviceDescription& device_info) {
466
if (auto* cuda_cc =
467
device_info.gpu_compute_capability().cuda_compute_capability()) {
- return cuda_cc->IsAtLeastHopper();
468
+ return cuda_cc->IsHopper();
469
470
return false;
471
0 commit comments