| 40 | } |
| 41 | |
| 42 | void |
| 43 | OpTensorCopy::record(const vk::CommandBuffer& commandBuffer) |
| 44 | { |
| 45 | KP_LOG_DEBUG("Kompute OpTensorCopy record called"); |
| 46 | |
| 47 | // We iterate from the second tensor onwards and record a copy to all |
| 48 | for (size_t i = 1; i < this->mTensors.size(); i++) { |
| 49 | this->mTensors[i]->recordCopyFrom(commandBuffer, this->mTensors[0]); |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | void |
| 54 | OpTensorCopy::preEval(const vk::CommandBuffer& /*commandBuffer*/) |
nothing calls this directly
no test coverage detected