shallow copy calls copy constructor of singa::Tensor Returns: new tensor copied
(self)
| 447 | return _call_singa_func(singa.DefaultTranspose, self.data) |
| 448 | |
| 449 | def copy(self): |
| 450 | '''shallow copy calls copy constructor of singa::Tensor |
| 451 | |
| 452 | Returns: |
| 453 | new tensor copied |
| 454 | ''' |
| 455 | return _call_singa_func(CTensor, self.data) |
| 456 | |
| 457 | def deepcopy(self): |
| 458 | '''Same as clone(). |
no test coverage detected