File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
mlir/test/lib/Dialect/Linalg Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -188,15 +188,14 @@ void TestLinalgCodegenStrategy::runStrategy(
188
188
CodegenStrategy strategy;
189
189
strategy
190
190
.tileAndFuseIf (fuse && !tileSizes.empty (), anchorOpName,
191
- std::move (tilingAndFusionOptions))
192
- .tileIf (!fuse && !tileSizes.empty (), anchorOpName,
193
- std::move (tilingOptions))
191
+ tilingAndFusionOptions)
192
+ .tileIf (!fuse && !tileSizes.empty (), anchorOpName, tilingOptions)
194
193
.promoteIf (!fuse && promote, anchorOpName,
195
194
LinalgPromotionOptions ()
196
195
.setAlignment (16 )
197
196
.setUseFullTileBuffersByDefault (promoteFullTile))
198
197
.tileIf (!fuse && !registerTileSizes.empty (), anchorOpName,
199
- std::move ( registerTilingOptions) )
198
+ registerTilingOptions)
200
199
.promoteIf (!fuse && registerPromote, anchorOpName,
201
200
LinalgPromotionOptions ()
202
201
.setAlignment (16 )
You can’t perform that action at this time.
0 commit comments