23#ifndef __NNFW_MISC_MATRIX_SHAPE_H__
24#define __NNFW_MISC_MATRIX_SHAPE_H__
53 Shape(int32_t height, int32_t width) :
H{height},
W{width}
53 Shape(int32_t height, int32_t width) :
H{height},
W{width} {
…}
Structure to have values of dimensions for matrix.
Shape()=default
Construct Shape object using default constrcutor.
Shape(int32_t height, int32_t width)
Construct Shape object with two values of dimensions.