| 129 | // ----------------------------------------------------------------------------------------------- |
| 130 | |
| 131 | HostTensor::HostTensor(const TensorDesc& desc) |
| 132 | : Tensor(desc), |
| 133 | ptr(alignedMalloc(getByteSize())), |
| 134 | shared(false) {} |
| 135 | |
| 136 | HostTensor::HostTensor(const TensorDesc& desc, void* data) |
| 137 | : Tensor(desc), |
nothing calls this directly
no test coverage detected