We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 280693d commit ee597cdCopy full SHA for ee597cd
mlir/python/mlir/dialects/transform/xegpu.py
@@ -46,8 +46,8 @@ def get_desc_op(
46
*,
47
loc=None,
48
ip=None,
49
-) -> GetDescOp:
50
- return GetDescOp(target, loc=loc, ip=ip)
+) -> OpResult:
+ return GetDescOp(target, loc=loc, ip=ip).result
51
52
53
@_ods_cext.register_operation(_Dialect, replace=True)
@@ -104,15 +104,15 @@ def set_desc_layout(
104
inst_data: Optional[MixedValues] = None,
105
106
107
-) -> SetDescLayoutOp:
108
return SetDescLayoutOp(
109
target,
110
sg_layout,
111
sg_data,
112
inst_data=inst_data,
113
loc=loc,
114
ip=ip,
115
- )
+ ).result
116
117
118
0 commit comments