[mlir] Fix broken __repr__ implementation in Linalg OpDSL

Reviewed By: gysit

Differential Revision: https://reviews.llvm.org/D118027
This commit is contained in:
Denys Shabalin 2022-01-24 12:44:47 +01:00
parent 473aa8e10c
commit 2d9ed1aba2
1 changed files with 1 additions and 1 deletions

View File

@ -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):