From 5d55be419e72a7c91b57f44ce8b5aceb23c6da95 Mon Sep 17 00:00:00 2001 From: Zhi Chen Date: Thu, 9 Jan 2020 23:51:23 +0000 Subject: [PATCH] rebase --- python/tvm/expr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tvm/expr.py b/python/tvm/expr.py index d147dd622fd3..71c0aecd1f6a 100644 --- a/python/tvm/expr.py +++ b/python/tvm/expr.py @@ -242,7 +242,7 @@ def asobject(self): return _make._OpNE(self.a, self.b) -class PrimExpr(ExprOp, NodeBase): +class PrimExpr(ExprOp, Object): """Base class of all tvm Expressions""" # In Python3, We have to explicitly tell interpreter to retain __hash__ if we overide __eq__ # https://docs.python.org/3.1/reference/datamodel.html#object.__hash__