blob: 5481f3fad1ff762870b8a25e4c9d0a05e4e4bfc4 [file] [log] [blame]
int main(int argc, const char *argv[]) {
struct MatrixData data = {0};
data.section.origin.row = 1;
data.section.origin.col = 2;
data.section.size.row = 3;
data.section.size.col = 4;
data.stride = 5;
return data.section.size.row;
}