Base working compilation
This commit is contained in:
parent
5596b6f029
commit
7c3af1189f
8 changed files with 40 additions and 37 deletions
|
|
@ -12,11 +12,11 @@
|
|||
|
||||
#include "Tensor.hpp"
|
||||
|
||||
#include "BaseOp.hpp"
|
||||
#include "OpBase.hpp"
|
||||
|
||||
namespace kp {
|
||||
|
||||
class OpCreateTensor : BaseOp<OpCreateTensor>
|
||||
class OpCreateTensor : OpBase
|
||||
{
|
||||
public:
|
||||
OpCreateTensor();
|
||||
|
|
@ -27,9 +27,9 @@ class OpCreateTensor : BaseOp<OpCreateTensor>
|
|||
|
||||
~OpCreateTensor();
|
||||
|
||||
void init(std::shared_ptr<Tensor> tensor, std::vector<uint32_t> data);
|
||||
void init(std::shared_ptr<Tensor> tensor, ...) override;
|
||||
|
||||
void record();
|
||||
void record() override;
|
||||
|
||||
private:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue