mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
7 lines
137 B
Python
7 lines
137 B
Python
class RealTensor(C.RealTensorBase):
|
|
def __str__(self):
|
|
return "RealTensor"
|
|
|
|
def __repr__(self):
|
|
return str(self)
|