updated typos and misaligned types
This commit is contained in:
parent
014f15d552
commit
f8859c7fd6
4 changed files with 5 additions and 24 deletions
|
|
@ -27,7 +27,7 @@ class Tensor
|
|||
|
||||
Tensor();
|
||||
|
||||
Tensor(std::vector<uint32_t> shape, TensorTypes tensorType = TensorTypes::eDevice);
|
||||
Tensor(std::array<uint32_t, KP_MAX_DIM_SIZE> shape, TensorTypes tensorType = TensorTypes::eDevice);
|
||||
|
||||
~Tensor();
|
||||
|
||||
|
|
@ -39,7 +39,7 @@ class Tensor
|
|||
// Getter functions
|
||||
std::vector<uint32_t> data();
|
||||
uint32_t size();
|
||||
std::array<uint32_t, KP_MAX_DIM_SIZE> shape();
|
||||
std::vector<uint32_t> shape();
|
||||
TensorTypes tensorType();
|
||||
bool isInit();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue