Skip to content

Commit

Permalink
[mlir][docs] Fix name of get arith->LLVM patterns in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mogball committed Oct 18, 2021
1 parent 31d3c0b commit 4a5ff56
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mlir/docs/Tutorials/Toy/Ch-6.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ multiple stages by relying on
mlir::RewritePatternSet patterns(&getContext());
mlir::populateAffineToStdConversionPatterns(patterns, &getContext());
mlir::populateLoopToStdConversionPatterns(patterns, &getContext());
mlir::populateArithmeticToLLVMConversionPatterns(typeConverter, patterns);
mlir::arith::populateArithmeticToLLVMConversionPatterns(typeConverter,
patterns);
mlir::populateStdToLLVMConversionPatterns(typeConverter, patterns);
// The only remaining operation, to lower from the `toy` dialect, is the
Expand Down

0 comments on commit 4a5ff56

Please sign in to comment.