23#ifndef __NNFW_MISC_FEATURE_SHAPE_H__
24#define __NNFW_MISC_FEATURE_SHAPE_H__
55 Shape(int32_t depth, int32_t height, int32_t width) :
N{1},
C{depth},
H{height},
W{width}
66 Shape(int32_t batch, int32_t depth, int32_t height, int32_t width)
67 :
N{batch},
C{depth},
H{height},
W{width}
Structure to have values of dimensions for feature.
Shape()=default
Construct Shape object using default constrcutor.
Shape(int32_t batch, int32_t depth, int32_t height, int32_t width)
Construct Shape object with four values of dimensions.
Shape(int32_t depth, int32_t height, int32_t width)
Construct Shape object with three values of dimensions.