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
An ordered loop is not optimized well, which causes sometimes a timeout in test/worksharing/for/omp_for_collapse.c if execution streams are oversubscribed.
#pragma parallel omp for ordered
for (i=1; i<10000; i++) {
#pragma omp ordered
comp(i);
}
Although order is not widely used, it should be optimized by using synchronization primitives.
The text was updated successfully, but these errors were encountered:
An ordered loop is not optimized well, which causes sometimes a timeout in
test/worksharing/for/omp_for_collapse.c
if execution streams are oversubscribed.Although
order
is not widely used, it should be optimized by using synchronization primitives.The text was updated successfully, but these errors were encountered: