Skip to content

Commit

Permalink
Remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmoses committed Dec 23, 2024
1 parent 5744380 commit fdcf401
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/enzyme_ad/jax/Passes/LowerKernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,6 @@ struct LowerKernelPass : public LowerKernelPassBase<LowerKernelPass> {

void runOnOperation() override {
auto context = getOperation()->getContext();
llvm::errs() << " Lowering Kernel in: " << *getOperation() << "\n";

SymbolTableCollection symbolTable;
symbolTable.getSymbolTable(getOperation());
Expand Down Expand Up @@ -750,8 +749,6 @@ struct LowerKernelPass : public LowerKernelPassBase<LowerKernelPass> {
data[1 + en.index()] = val;
}

llvm::errs() << " Lowering KernelCall in: " << *op << "\n";

// Compiled kernel goes here once ready
data[0] = (size_t)CompileKernel(
symbolTable, op.getLoc(), fn, jit, data[1], data[2], data[3], data[4],
Expand All @@ -777,8 +774,6 @@ struct LowerKernelPass : public LowerKernelPassBase<LowerKernelPass> {

op.replaceAllUsesWith(replacement);
op.erase();
llvm::errs() << " Lowering KernelCall replacement: " << *replacement
<< "\n";
});
}
};
Expand Down

0 comments on commit fdcf401

Please sign in to comment.