Added initial base for architecture on the proposed Kompute structure

This commit is contained in:
Alejandro Saucedo 2020-08-15 18:58:18 +01:00
parent 1d318e596d
commit 970f502cda
9 changed files with 197 additions and 21 deletions

16
src/Tensor.hpp Normal file
View file

@ -0,0 +1,16 @@
#pragma once
namespace kp {
class Tensor
{
private:
public:
Tensor();
virtual ~Tensor();
};
} // End namespace kp