forked from OSchip/llvm-project
[mlir] Fix broken __repr__ implementation in Linalg OpDSL
Reviewed By: gysit Differential Revision: https://reviews.llvm.org/D118027
This commit is contained in:
parent
473aa8e10c
commit
2d9ed1aba2
|
@ -468,7 +468,7 @@ class TensorTypeFn(TensorExpression):
|
|||
self.arg.visit_tensor_exprs(callback)
|
||||
|
||||
def __repr__(self):
|
||||
return f"{repr(self.type_fn)}({type_var}, {self.arg})"
|
||||
return f"{repr(self.type_fn)}({self.type_var}, {self.arg})"
|
||||
|
||||
|
||||
class const(TensorExpression):
|
||||
|
|
Loading…
Reference in New Issue