Compares two TVM types by referential equality.
(self, other)
| 36 | return not self.__eq__(other) |
| 37 | |
| 38 | def same_as(self, other): |
| 39 | """Compares two TVM types by referential equality.""" |
| 40 | return super().__eq__(other) |
| 41 | |
| 42 | |
| 43 | @tvm_ffi.register_object("ir.PrimType") |