def __rlshift__(self, other): _taichi_skip_traceback = 1 return ti.bit_shl(other, self)
def __ilshift__(self, other): _taichi_skip_traceback = 1 self.assign(ti.bit_shl(self, other)) return self
def __lshift__(self, other): import taichi as ti _taichi_skip_traceback = 1 return ti.bit_shl(self, other)