| 1028 | } |
| 1029 | |
| 1030 | size_t Tensor::AllocatedBytes() const { |
| 1031 | if (buf_) { |
| 1032 | size_t ret; |
| 1033 | if (buf_->GetAllocatedBytes(&ret)) { |
| 1034 | return ret; |
| 1035 | } |
| 1036 | } |
| 1037 | return TotalBytes(); |
| 1038 | } |
| 1039 | |
| 1040 | bool Tensor::CanUseDMA() const { |
| 1041 | CASES(dtype(), return is_simple_type<T>::value); |
no test coverage detected