Move the tensor data onto the default host CppCPU device.
(self)
| 290 | self.device = device |
| 291 | |
| 292 | def to_host(self): |
| 293 | '''Move the tensor data onto the default host CppCPU device. |
| 294 | ''' |
| 295 | self.data.ToHost() |
| 296 | self.device = get_default_device() |
| 297 | |
| 298 | def l2(self): |
| 299 | ''' |
no test coverage detected