mirror of
https://github.com/intel/llvm.git
synced 2026-01-17 23:45:25 +08:00
[mlir] Fix broken __repr__ implementation in Linalg OpDSL
Reviewed By: gysit Differential Revision: https://reviews.llvm.org/D118027
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user