Skip to content

Documentation typo fixes #135732

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mlir/include/mlir/Transforms/DialectConversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ class TypeConverter {
}

/// Register a conversion function for attributes within types. Type
/// converters may call this function in order to allow hoking into the
/// converters may call this function in order to allow hooking into the
/// translation of attributes that exist within types. For example, a type
/// converter for the `memref` type could use these conversions to convert
/// memory spaces or layouts in an extensible way.
Expand Down
4 changes: 2 additions & 2 deletions mlir/include/mlir/Transforms/Passes.td
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,8 @@ def Mem2Reg : Pass<"mem2reg"> {
let description = [{
This pass removes loads out of and stores into a memory slot, and turns
them into direct uses of SSA values. This is done generically using the
`PromoteAllocationOpInterface`, `PromoteOpInterface` and
`PromoteMemOpInterface` interfaces.
`PromotableAllocationOpInterface`, `PromotableOpInterface` and
`PromotableMemOpInterface` interfaces.

This pass will attempt to compute which definitions of the content of
the memory slot reach operations that use the memory slot pointer. It
Expand Down
Loading