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 @@ -1652,7 +1652,7 @@ def Vector_TransferWriteOp :
16521652}
16531653
16541654def Vector_LoadOp : Vector_Op<"load", [
1655- DeclareOpInterfaceMethods<VectorUnrollOpInterface, ["getShapeForUnroll"] >,
1655+ DeclareOpInterfaceMethods<VectorUnrollOpInterface>,
16561656 DeclareOpInterfaceMethods<MemorySpaceCastConsumerOpInterface>
16571657 ]> {
16581658 let summary = "reads an n-D slice of memory into an n-D vector";
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