You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the wiki there is not currently a way to have two inner loops with different iteration count. I am checking whether there is any recent update on it.
Specifically, this is what I am curious about:
for (...; @outer) {
@safeInner(N, M) {
for (int i = 0; i < N; ++i; @inner) {
}
for (int i = 0; i < M; ++i; @inner) {
}
}
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Dear OCCA developers,
According to the wiki there is not currently a way to have two inner loops with different iteration count. I am checking whether there is any recent update on it.
Specifically, this is what I am curious about:
for (...; @outer) {
@safeInner(N, M) {
for (int i = 0; i < N; ++i; @inner) {
}
for (int i = 0; i < M; ++i; @inner) {
}
}
}
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions