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 9c6cbf7 commit d63e4c0Copy full SHA for d63e4c0
src/Compiler.jl
@@ -1447,7 +1447,13 @@ function raising!(f, is_raising::Bool)
1447
end
1448
1449
function get_optimize_comms_passes(options::Bool)
1450
- options || return String[]
+ if !options
1451
+ return [
1452
+ "enzyme-hlo-generate-td{patterns=lower_rotate;lower_wrap;lower_extend}",
1453
+ "transform-interpreter",
1454
+ "enzyme-hlo-remove-transform",
1455
+ ]
1456
+ end
1457
return get_optimize_comms_passes(OptimizeCommunicationOptions())
1458
1459
0 commit comments