Differential Revision: https://reviews.llvm.org/D97220
This commit is contained in:
Geoffrey Martin-Noble 2021-02-22 13:10:30 -08:00
parent b380699416
commit e2224dd753
1 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ def LinalgContractionOpInterface : OpInterface<"ContractionOpInterface"> {
let methods = [
InterfaceMethod<
/*desc=*/[{
Returns whether the given op has indexing maps the correspond to a
Returns whether the given op has indexing maps that correspond to a
row-major matmul operation.
}],
/*retTy=*/"bool",
@ -48,7 +48,7 @@ def LinalgContractionOpInterface : OpInterface<"ContractionOpInterface"> {
}]>,
InterfaceMethod<
/*desc=*/[{
Returns whether the given op has indexing maps the correspond to a
Returns whether the given op has indexing maps that correspond to a
column-major matmul operation.
}],
/*retTy=*/"bool",
@ -59,7 +59,7 @@ def LinalgContractionOpInterface : OpInterface<"ContractionOpInterface"> {
}]>,
InterfaceMethod<
/*desc=*/[{
Returns whether the given op has indexing maps the correspond to a
Returns whether the given op has indexing maps that correspond to a
row-major batch matmul operation.
}],
/*retTy=*/"bool",