| 59 | } |
| 60 | |
| 61 | Tensor::~Tensor() |
| 62 | { |
| 63 | KP_LOG_DEBUG("Kompute Tensor destructor started. Type: {}", |
| 64 | Tensor::toString(this->tensorType())); |
| 65 | |
| 66 | if (this->mDevice) { |
| 67 | this->destroy(); |
| 68 | } |
| 69 | |
| 70 | KP_LOG_DEBUG("Kompute Tensor destructor success"); |
| 71 | } |
| 72 | |
| 73 | void |
| 74 | Tensor::rebuild(void* data, |
nothing calls this directly
no test coverage detected