Replies: 1 comment 2 replies
-
I think it's the meaning of divide number based on contiguilty. Fot the example above, the contiguilty of dim0 is 1, so the divisibility is 4 (dim[0] / 1) = 4 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
for this example in AxisInfo.h
/// [12, 16, 20, 24]
/// [13, 17, 21, 25]
/// [14, 18, 22, 26]
/// [15, 19, 23, 27]
the contiguity of the second dim is 1. so the second dim has 4 groups.
the first element of each group is 12, 16, 20 ,24, so divisibility of second dim is 4.
am I wrong? would help point out my mistake?
Thank you
Beta Was this translation helpful? Give feedback.
All reactions