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

Method __ne__

python/tvm_ffi/access_path.py:131–135  ·  view source on GitHub ↗

Return whether two access paths are not equal.

(self, other: Any)

Source from the content-addressed store, hash-verified

129 return self._path_equal(other)
130
131 def __ne__(self, other: Any) -> bool:
132 """Return whether two access paths are not equal."""
133 if not isinstance(other, AccessPath):
134 return True
135 return not self._path_equal(other)
136
137 def is_prefix_of(self, other: AccessPath) -> bool:
138 """Check if this access path is a prefix of another access path.

Callers

nothing calls this directly

Calls 1

_path_equalMethod · 0.95

Tested by

no test coverage detected