We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a66af10 commit a104c83Copy full SHA for a104c83
lib/Transform/Affine/AffineDistributeToMPI.cpp
@@ -22,6 +22,10 @@ struct AffineDistributeToMPI
22
23
// TODO: change to work with funcOp instead of affineForOp?
24
void runOnOperation() {
25
+ // print number of ranks
26
+ llvm::errs() << "n_ranks=" << n_ranks << "\n";
27
+
28
+ // capture affineForOp and walk the IR
29
getOperation()->walk([&](AffineForOp op) {
30
OpBuilder builder(op.getContext());
31
0 commit comments