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 e9459dc commit 1a03d07Copy full SHA for 1a03d07
mlir/python/mlir/dialects/transform/xegpu.py
@@ -47,8 +47,8 @@ def get_desc_op(
47
*,
48
loc=None,
49
ip=None,
50
-) -> GetDescOp:
51
- return GetDescOp(target, loc=loc, ip=ip)
+) -> OpResult:
+ return GetDescOp(target, loc=loc, ip=ip).result
52
53
54
@_ods_cext.register_operation(_Dialect, replace=True)
@@ -105,15 +105,15 @@ def set_desc_layout(
105
inst_data: Optional[MixedValues] = None,
106
107
108
-) -> SetDescLayoutOp:
109
return SetDescLayoutOp(
110
target,
111
sg_layout,
112
sg_data,
113
inst_data=inst_data,
114
loc=loc,
115
ip=ip,
116
- )
+ ).result
117
118
119
0 commit comments