Open BuxianChen opened 1 year ago
I find that in the codebase:
class Tensor(Value): __rsub__ = __sub__
Here is a test case:
import needle as ndl 1 - ndl.Tensor([0.5, 2.0, 3.0]) # get needle.Tensor([-0.5 1. 2. ]), which is wrong
I find that in the codebase:
Here is a test case: