File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
mlir/test/lib/Dialect/Vector Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -374,12 +374,13 @@ struct TestVectorTransferCollapseInnerMostContiguousDims
374
374
}
375
375
};
376
376
377
- struct TestSinkVectorBroadcast
378
- : public PassWrapper<TestSinkVectorBroadcast, OperationPass<func::FuncOp>> {
379
- MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID (TestSinkVectorBroadcast)
377
+ struct TestVectorReorderPatterns
378
+ : public PassWrapper<TestVectorReorderPatterns,
379
+ OperationPass<func::FuncOp>> {
380
+ MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID (TestVectorReorderPatterns)
380
381
381
- TestSinkVectorBroadcast () = default ;
382
- TestSinkVectorBroadcast (const TestSinkVectorBroadcast &pass) = default ;
382
+ TestVectorReorderPatterns () = default ;
383
+ TestVectorReorderPatterns (const TestVectorReorderPatterns &pass) = default ;
383
384
384
385
void getDependentDialects (DialectRegistry ®istry) const override {
385
386
registry.insert <memref::MemRefDialect, affine::AffineDialect>();
@@ -920,7 +921,7 @@ void registerTestVectorLowerings() {
920
921
921
922
PassRegistration<TestVectorTransferCollapseInnerMostContiguousDims>();
922
923
923
- PassRegistration<TestSinkVectorBroadcast >();
924
+ PassRegistration<TestVectorReorderPatterns >();
924
925
925
926
PassRegistration<TestVectorReduceToContractPatternsPatterns>();
926
927
You can’t perform that action at this time.
0 commit comments