I find that in the codebase: ```python class Tensor(Value): __rsub__ = __sub__ ``` Here is a test case: ```python 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: