r"""An object that checks whether the input tensors of each operator have changed before and after the operation.
Examples:
.. code-block:: python
from megengine import tensor
from megengine.utils.tensor_sanity_check import TensorSanityCheck
with TensorSanityCheck() as checker:
a = tensor([1, 2])
b = tensor([3, 4])
c = a + b
"""
=
return