| 60 | } |
| 61 | |
| 62 | Device Tensor::device() const { |
| 63 | const auto device_ = tensor_->device().GetOrThrow(); |
| 64 | return Device(device_->type(), device_->device_id()); |
| 65 | } |
| 66 | |
| 67 | DType Tensor::dtype() const { return static_cast<DType>(tensor_->dtype()->data_type()); } |
| 68 |