23#ifndef __NNFW_MISC_VECTOR_OBJECT_H__
24#define __NNFW_MISC_VECTOR_OBJECT_H__
67 int32_t
size(
void)
const {
return _size; }
75 T
at(uint32_t nth)
const override {
return _value.at(nth); }
85 std::vector<T> _value;
Class to have information of the operand for vector.
T at(uint32_t nth) const override
Get the value used by index.
Object(int32_t size, const Generator &gen)
Construct Object object with size of vector and set value used by Generator.
std::function< T(int32_t size, int32_t offset)> Generator
int32_t size(void) const
Get size of vector.
__global uchar * offset(const Image *img, int x, int y)
This file contains Reader class.
Class reads values of vector The interface class.