MCPcopy Create free account
hub / github.com/apache/tvm-ffi / __ne__

Method __ne__

python/tvm_ffi/container.py:247–252  ·  view source on GitHub ↗

Structural inequality.

(self, other: object)

Source from the content-addressed store, hash-verified

245 return _ffi_api.RecursiveEq(self, other)
246
247 def __ne__(self, other: object) -> bool:
248 """Structural inequality."""
249 result = self.__eq__(other)
250 if result is NotImplemented:
251 return NotImplemented
252 return not result
253
254 def __hash__(self) -> int:
255 """Structural hash."""

Callers

nothing calls this directly

Calls 1

__eq__Method · 0.95

Tested by

no test coverage detected