Skip to content

Commit e0cdb7f

Browse files
authored
bump minimum required default gpu versions (#1282)
We are using intrinsics that require these.
1 parent 7217a6d commit e0cdb7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/enzyme_ad/jax/Passes/ConvertParallelToGPU.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2429,10 +2429,10 @@ gdgo->erase();
24292429
if (!gmod.getTargetsAttr()) {
24302430
auto chip = sm;
24312431
if (chip.size() == 0)
2432-
chip = "sm_50";
2432+
chip = "sm_80";
24332433
auto features = feat;
24342434
if (features.size() == 0)
2435-
features = "+ptx60";
2435+
features = "+ptx73";
24362436
auto target = NVVM::NVVMTargetAttr::get(
24372437
gmod.getContext(), /*optLevel*/ 2,
24382438
/*triple*/ "nvptx64-nvidia-cuda", chip, features);

0 commit comments

Comments
 (0)