Compare two struct info for structural equivalence.
(self, other)
| 68 | """ |
| 69 | |
| 70 | def __eq__(self, other): |
| 71 | """Compare two struct info for structural equivalence.""" |
| 72 | return tvm_ffi.structural_equal(self, other) |
| 73 | |
| 74 | def __ne__(self, other): |
| 75 | return not self.__eq__(other) |