File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
include/mlir/Dialect/Vector/IR Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -1653,7 +1653,7 @@ def Vector_TransferWriteOp :
16531653}
16541654
16551655def Vector_LoadOp : Vector_Op<"load", [
1656- DeclareOpInterfaceMethods<VectorUnrollOpInterface, ["getShapeForUnroll"] >,
1656+ DeclareOpInterfaceMethods<VectorUnrollOpInterface>,
16571657 DeclareOpInterfaceMethods<MemorySpaceCastConsumerOpInterface>,
16581658 DeclareOpInterfaceMethods<AlignmentAttrOpInterface>
16591659 ]> {
Original file line number Diff line number Diff line change @@ -5762,10 +5762,6 @@ OpFoldResult LoadOp::fold(FoldAdaptor) {
57625762 return OpFoldResult ();
57635763}
57645764
5765- std::optional<SmallVector<int64_t , 4 >> LoadOp::getShapeForUnroll () {
5766- return llvm::to_vector<4 >(getVectorType ().getShape ());
5767- }
5768-
57695765FailureOr<std::optional<SmallVector<Value>>>
57705766LoadOp::bubbleDownCasts (OpBuilder &builder) {
57715767 return mlir::detail::bubbleDownInPlaceMemorySpaceCastImpl (getBaseMutable (),
You can’t perform that action at this time.
0 commit comments