Remove superfluous quote from lhlo_ops.td

PiperOrigin-RevId: 335921873
This commit is contained in:
Pavel Krajcevski 2020-10-07 12:05:48 -07:00 committed by TensorFlow MLIR Team
parent 673588c864
commit ac483f4091
1 changed files with 3 additions and 2 deletions

View File

@ -345,10 +345,11 @@ def HLO_DynamicUpdateSliceOp: LHLO_Op<"dynamic-update-slice", []> {
def HLO_StaticMemRefCastOp: Op<LHLO_Dialect, "static_memref_cast", def HLO_StaticMemRefCastOp: Op<LHLO_Dialect, "static_memref_cast",
[NoSideEffect, DeclareOpInterfaceMethods<ViewLikeOpInterface>]> { [NoSideEffect, DeclareOpInterfaceMethods<ViewLikeOpInterface>]> {
let summary = [{ let summary = [{
"modifies the offset, sizes and strides of a statically shaped memref. modifies the offset, sizes and strides of a statically shaped memref
}]; }];
let description = [{ let description = [{
Allows to modify the offset, sizes and strides of a statically shaped memref. Casts the statically shaped memref operand to a memref with optionally
modified offsets, sizes and strides.
Example: Example:
```mlir ```mlir