コード例 #1
0
ファイル: expr.py プロジェクト: zotanika/incubator-tvm
 def __rand__(self, other):
     return _ffi_api.bitwise_and(other, self, None)  # type: ignore
コード例 #2
0
 def __rand__(self, other):
     return _ffi_api.bitwise_and(other, self)
コード例 #3
0
ファイル: expr.py プロジェクト: github-3rr0r/tvm
 def __and__(self, other):
     return _ffi_api.bitwise_and(self, other, None)