Ejemplo n.º 1
0
 def __rlshift__(self, other):
     _taichi_skip_traceback = 1
     return ti.bit_shl(other, self)
Ejemplo n.º 2
0
 def __ilshift__(self, other):
     _taichi_skip_traceback = 1
     self.assign(ti.bit_shl(self, other))
     return self
Ejemplo n.º 3
0
 def __lshift__(self, other):
     import taichi as ti
     _taichi_skip_traceback = 1
     return ti.bit_shl(self, other)