62 lines
1.8 KiB
C++
62 lines
1.8 KiB
C++
#pragma once
|
|
|
|
#include "kompute/Core.hpp"
|
|
|
|
#include "kompute/Tensor.hpp"
|
|
|
|
#include "kompute/operations/OpBase.hpp"
|
|
|
|
namespace kp {
|
|
|
|
/**
|
|
* Operation that copies the data from the first tensor to the rest of the tensors
|
|
* provided, using a record command for all the vectors. This operation does not
|
|
* own/manage the memory of the tensors passed to it. The operation must only
|
|
* receive tensors of type
|
|
*/
|
|
class OpTensorCopy : public OpBase
|
|
{
|
|
public:
|
|
/**
|
|
* Default constructor with parameters that provides the core vulkan resources
|
|
* and the tensors that will be used in the operation.
|
|
*
|
|
* @param tensors Tensors that will be used to create in operation.
|
|
*/
|
|
OpTensorCopy(const std::vector<std::shared_ptr<Tensor>>& tensors);
|
|
|
|
/**
|
|
* Default destructor. This class does not manage memory so it won't be
|
|
* expecting the parent to perform a release.
|
|
*/
|
|
~OpTensorCopy() override;
|
|
|
|
/**
|
|
* Records the copy commands from the first tensor into all the other
|
|
* tensors provided. Also optionally records a barrier.
|
|
*
|
|
* @param commandBuffer The command buffer to record the command into.
|
|
*/
|
|
void record(const vk::CommandBuffer& commandBuffer) override;
|
|
|
|
/**
|
|
* Does not perform any preEval commands.
|
|
*
|
|
* @param commandBuffer The command buffer to record the command into.
|
|
*/
|
|
virtual void preEval(const vk::CommandBuffer& commandBuffer) override;
|
|
|
|
/**
|
|
* Copies the local vectors for all the tensors to sync the data with the gpu.
|
|
*
|
|
* @param commandBuffer The command buffer to record the command into.
|
|
*/
|
|
virtual void postEval(const vk::CommandBuffer& commandBuffer) override;
|
|
|
|
private:
|
|
// -------------- ALWAYS OWNED RESOURCES
|
|
std::vector<std::shared_ptr<Tensor>> mTensors;
|
|
};
|
|
|
|
} // End namespace kp
|
|
|