diff --git a/coders/dpx.c b/coders/dpx.c
index e6fdbc4..f6b5d2d 100644
--- a/coders/dpx.c
+++ b/coders/dpx.c
@@ -1155,7 +1155,7 @@
MagickTrue : MagickFalse);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP > 200505)
- #pragma omp parallel for schedule(static,1) shared(row,status,quantum_type)
+ #pragma omp parallel for shared(row,status,quantum_type)
#endif
for (y=0; y < (long) image->rows; y++)
{
diff --git a/coders/hald.c b/coders/hald.c
index 9b538d9..09005be 100644
--- a/coders/hald.c
+++ b/coders/hald.c
@@ -126,7 +126,7 @@
image->rows=(unsigned long) (level*cube_size);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP > 200505)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y+=(long) level)
{
diff --git a/coders/pnm.c b/coders/pnm.c
index 827cf3f..2c0471f 100644
--- a/coders/pnm.c
+++ b/coders/pnm.c
@@ -594,7 +594,7 @@
extent=GetQuantumExtent(image,quantum_info,quantum_type);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP > 200505)
- #pragma omp parallel for schedule(static,1) shared(row,status,quantum_type)
+ #pragma omp parallel for shared(row,status,quantum_type)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -676,7 +676,7 @@
ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP > 200505)
- #pragma omp parallel for schedule(static,1) shared(row,status,quantum_type)
+ #pragma omp parallel for shared(row,status,quantum_type)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -794,7 +794,7 @@
ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP > 200505)
- #pragma omp parallel for schedule(static,1) shared(row,status,type)
+ #pragma omp parallel for shared(row,status,type)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -968,7 +968,7 @@
ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP > 200505)
- #pragma omp parallel for schedule(static,1) shared(row,status,quantum_type)
+ #pragma omp parallel for shared(row,status,quantum_type)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1211,7 +1211,7 @@
extent=GetQuantumExtent(image,quantum_info,quantum_type);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP > 200505)
- #pragma omp parallel for schedule(static,1) shared(row,status,quantum_type)
+ #pragma omp parallel for shared(row,status,quantum_type)
#endif
for (y=0; y < (long) image->rows; y++)
{
diff --git a/magick/colormap.c b/magick/colormap.c
index a9ac2aa..989c9de 100644
--- a/magick/colormap.c
+++ b/magick/colormap.c
@@ -119,7 +119,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -248,7 +248,7 @@
Assign index values to colormap entries.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (i=0; i < (long) image->colors; i++)
image->colormap[i].opacity=(IndexPacket) i;
@@ -261,7 +261,7 @@
Update image colormap indexes to sorted colormap order.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (i=0; i < (long) image->colors; i++)
pixels[(long) image->colormap[i].opacity]=(unsigned short) i;
diff --git a/magick/colorspace.c b/magick/colorspace.c
index c4be4cb..4246f93 100644
--- a/magick/colorspace.c
+++ b/magick/colorspace.c
@@ -224,7 +224,7 @@
}
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -277,7 +277,7 @@
GetMagickPixelPacket(image,&zero);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -334,7 +334,7 @@
}
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -390,7 +390,7 @@
}
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -446,7 +446,7 @@
}
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -502,7 +502,7 @@
}
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -594,7 +594,7 @@
black=pow(10.0,(reference_black-reference_white)*(gamma/density)*
0.002/0.6);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
logmap[i]=ScaleMapToQuantum((MagickRealType) (MaxMap*(reference_white+
@@ -602,7 +602,7 @@
0.002/0.6))/1024.0+0.5));
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -671,7 +671,7 @@
primary_info.y=(double) (MaxMap+1.0)/2.0;
primary_info.z=(double) (MaxMap+1.0)/2.0;
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -696,7 +696,7 @@
G = 0.29900*R+0.58700*G+0.11400*B
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -729,7 +729,7 @@
primary_info.y=(double) (MaxMap+1.0)/2.0;
primary_info.z=(double) (MaxMap+1.0)/2.0;
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -753,7 +753,7 @@
G = 0.21260*R+0.71520*G+0.07220*B
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -784,7 +784,7 @@
primary_info.y=(double) (MaxMap+1.0)/2.0;
primary_info.z=(double) (MaxMap+1.0)/2.0;
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -810,7 +810,7 @@
B = 0.0*R+0.0*G+1.0*B
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -844,7 +844,7 @@
Z = 0.0193324*R+0.1191930*G+0.9504440*B
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -914,7 +914,7 @@
primary_info.y=(double) (MaxMap+1.0)/2.0;
primary_info.z=(double) (MaxMap+1.0)/2.0;
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -945,7 +945,7 @@
primary_info.y=(double) (MaxMap+1.0)/2.0;
primary_info.z=(double) (MaxMap+1.0)/2.0;
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -977,7 +977,7 @@
primary_info.y=(double) (MaxMap+1.0)/2.0;
primary_info.z=(double) (MaxMap+1.0)/2.0;
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -1007,7 +1007,7 @@
*/
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1420,7 +1420,7 @@
}
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1476,7 +1476,7 @@
GetMagickPixelPacket(image,&zero);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1536,7 +1536,7 @@
}
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1594,7 +1594,7 @@
}
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1652,7 +1652,7 @@
}
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1710,7 +1710,7 @@
}
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1811,7 +1811,7 @@
return(MagickFalse);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1890,7 +1890,7 @@
through QuantumRange.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -1925,7 +1925,7 @@
through QuantumRange.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -1958,7 +1958,7 @@
through QuantumRange.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -1988,7 +1988,7 @@
B = 0.0*R+0.0*G+1.0*B
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -2014,7 +2014,7 @@
B = 0.0556352*X-0.2039960*Y+1.0570700*Z
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -2042,7 +2042,7 @@
YCC is scaled by 1.3584. C1 zero is 156 and C2 is at 137.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -2075,7 +2075,7 @@
through QuantumRange.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -2110,7 +2110,7 @@
through QuantumRange.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -2144,7 +2144,7 @@
through QuantumRange.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -2178,7 +2178,7 @@
*/
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -2287,7 +2287,7 @@
*/
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (i=0; i < (long) image->colors; i++)
{
diff --git a/magick/compare.c b/magick/compare.c
index 5cb1c2d..e28f3f8 100644
--- a/magick/compare.c
+++ b/magick/compare.c
@@ -198,7 +198,7 @@
reconstruct_view=AcquireCacheView(reconstruct_image);
highlight_view=AcquireCacheView(highlight_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -370,7 +370,7 @@
image_view=AcquireCacheView(image);
reconstruct_view=AcquireCacheView(reconstruct_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -486,7 +486,7 @@
image_view=AcquireCacheView(image);
reconstruct_view=AcquireCacheView(reconstruct_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -723,7 +723,7 @@
image_view=AcquireCacheView(image);
reconstruct_view=AcquireCacheView(reconstruct_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -829,7 +829,7 @@
image_view=AcquireCacheView(image);
reconstruct_view=AcquireCacheView(reconstruct_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1405,7 +1405,7 @@
image_view=AcquireCacheView(image);
reference_view=AcquireCacheView(reference);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) reference->rows; y++)
{
@@ -1524,7 +1524,7 @@
progress=0;
similarity_view=AcquireCacheView(similarity_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) (image->rows-reference->rows+1); y++)
{
diff --git a/magick/composite.c b/magick/composite.c
index d9c6ccb..7891fdd 100644
--- a/magick/composite.c
+++ b/magick/composite.c
@@ -1369,7 +1369,7 @@
image_view=AcquireCacheView(image);
composite_view=AcquireCacheView(composite_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
-#pragma omp parallel for schedule(static,1) shared(status)
+#pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) composite_image->rows; y++)
{
@@ -1845,7 +1845,7 @@
image_view=AcquireCacheView(image);
composite_view=AcquireCacheView(composite_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -2506,7 +2506,7 @@
Tile texture onto the image background.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y+=texture->rows)
{
@@ -2553,7 +2553,7 @@
image_view=AcquireCacheView(image);
texture_view=AcquireCacheView(texture);
#if defined(_OPENMP) && (_OPENMP >= 200203)
-#pragma omp parallel for schedule(static,1) shared(status)
+#pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
diff --git a/magick/decorate.c b/magick/decorate.c
index 422b426..faac3d4 100644
--- a/magick/decorate.c
+++ b/magick/decorate.c
@@ -400,7 +400,7 @@
Draw sides of ornamental border.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -722,7 +722,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) raise_info->height; y++)
{
@@ -789,7 +789,7 @@
}
}
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=(long) raise_info->height; y < (long) (image->rows-raise_info->height); y++)
{
@@ -845,7 +845,7 @@
}
}
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=(long) (image->rows-raise_info->height); y < (long) image->rows; y++)
{
diff --git a/magick/deprecate.c b/magick/deprecate.c
index a785675..7fbd582 100644
--- a/magick/deprecate.c
+++ b/magick/deprecate.c
@@ -1709,7 +1709,7 @@
similarity_threshold=image->columns*image->rows;
SetGeometry(reference,&offset);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (y=0; y < (long) (image->rows-reference->rows); y++)
{
diff --git a/magick/distort.c b/magick/distort.c
index a38c363..44d1ec4 100644
--- a/magick/distort.c
+++ b/magick/distort.c
@@ -1923,7 +1923,7 @@
resample_filter=AcquireResampleFilterThreadSet(image,MagickFalse,exception);
distort_view=AcquireCacheView(distort_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (j=0; j < (long) distort_image->rows; j++)
{
@@ -2489,7 +2489,7 @@
GetMagickPixelPacket(sparse_image,&zero);
sparse_view=AcquireCacheView(sparse_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (j=0; j < (long) sparse_image->rows; j++)
{
diff --git a/magick/draw.c b/magick/draw.c
index 1aa8c32..a6362c4 100644
--- a/magick/draw.c
+++ b/magick/draw.c
@@ -1169,7 +1169,7 @@
image_view=AcquireCacheView(image);
source_view=AcquireCacheView(source);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=(long) (edge.y1+0.5); y <= (long) (edge.y2+0.5); y++)
{
@@ -3273,7 +3273,7 @@
GetMagickPixelPacket(image,&zero);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=bounding_box.y; y < (long) bounding_box.height; y++)
{
@@ -3928,7 +3928,7 @@
if (image->matte == MagickFalse)
(void) SetImageAlphaChannel(image,OpaqueAlphaChannel);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=(long) (bounds.y1+0.5); y <= (long) (bounds.y2+0.5); y++)
{
diff --git a/magick/effect.c b/magick/effect.c
index fc24328..629c538 100644
--- a/magick/effect.c
+++ b/magick/effect.c
@@ -269,7 +269,7 @@
edge_view=AcquireCacheView(edge_image);
blur_view=AcquireCacheView(blur_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) blur_image->rows; y++)
{
@@ -587,7 +587,7 @@
edge_view=AcquireCacheView(edge_image);
sharp_view=AcquireCacheView(sharp_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) sharp_image->rows; y++)
{
@@ -908,7 +908,7 @@
image_view=AcquireCacheView(image);
blur_view=AcquireCacheView(blur_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) blur_image->rows; y++)
{
@@ -1499,7 +1499,7 @@
image_view=AcquireCacheView(image);
despeckle_view=AcquireCacheView(despeckle_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (channel=0; channel <= 3; channel++)
{
@@ -2244,7 +2244,7 @@
image_view=AcquireCacheView(image);
median_view=AcquireCacheView(median_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) median_image->rows; y++)
{
@@ -2516,7 +2516,7 @@
image_view=AcquireCacheView(image);
blur_view=AcquireCacheView(blur_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -3291,7 +3291,7 @@
image_view=AcquireCacheView(image);
blur_view=AcquireCacheView(blur_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) blur_image->rows; y++)
{
@@ -3602,7 +3602,7 @@
image_view=AcquireCacheView(image);
noise_view=AcquireCacheView(noise_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) noise_image->rows; y++)
{
@@ -3859,7 +3859,7 @@
image_view=AcquireCacheView(image);
blur_view=AcquireCacheView(blur_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -4195,7 +4195,7 @@
image_view=AcquireCacheView(image);
shade_view=AcquireCacheView(shade_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -4492,7 +4492,7 @@
random_info=AcquireRandomInfoThreadSet();
image_view=AcquireCacheView(spread_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) spread_image->rows; y++)
{
@@ -4651,7 +4651,7 @@
image_view=AcquireCacheView(image);
unsharp_view=AcquireCacheView(unsharp_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
diff --git a/magick/enhance.c b/magick/enhance.c
index e02cc7b..1c78304 100644
--- a/magick/enhance.c
+++ b/magick/enhance.c
@@ -460,7 +460,7 @@
ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed",
image->filename);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -480,7 +480,7 @@
Apply transfer function to colormap.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (i=0; i < (long) image->colors; i++)
{
@@ -506,7 +506,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -654,7 +654,7 @@
exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -887,7 +887,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1225,7 +1225,7 @@
*/
(void) ResetMagickMemory(stretch_map,0,(MaxMap+1)*sizeof(*stretch_map));
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -1307,7 +1307,7 @@
Stretch colormap.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (i=0; i < (long) image->colors; i++)
{
@@ -1343,7 +1343,7 @@
status=MagickTrue;
progress=0;
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1522,7 +1522,7 @@
image_view=AcquireCacheView(image);
enhance_view=AcquireCacheView(enhance_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1755,7 +1755,7 @@
white=map[(int) MaxMap];
(void) ResetMagickMemory(equalize_map,0,(MaxMap+1)*sizeof(*equalize_map));
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -1786,7 +1786,7 @@
Equalize colormap.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (i=0; i < (long) image->colors; i++)
{
@@ -1813,7 +1813,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1989,7 +1989,7 @@
(void) ResetMagickMemory(gamma_map,0,(MaxMap+1)*sizeof(*gamma_map));
if (gamma != 0.0)
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1)
+ #pragma omp parallel for
#endif
for (i=0; i <= (long) MaxMap; i++)
gamma_map[i]=RoundToQuantum((MagickRealType) ScaleMapToQuantum((
@@ -2000,7 +2000,7 @@
Gamma-correct colormap.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (i=0; i < (long) image->colors; i++)
{
@@ -2033,7 +2033,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -2212,7 +2212,7 @@
exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -2483,7 +2483,7 @@
(void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
if (image->storage_class == PseudoClass)
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (i=0; i < (long) image->colors; i++)
{
@@ -2507,7 +2507,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -2640,7 +2640,7 @@
(void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
if (image->storage_class == PseudoClass)
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (i=0; i < (long) image->colors; i++)
{
@@ -2664,7 +2664,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -3113,7 +3113,7 @@
Modulate colormap.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (i=0; i < (long) image->colors; i++)
switch (colorspace)
@@ -3150,7 +3150,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -3285,7 +3285,7 @@
Negate colormap.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (i=0; i < (long) image->colors; i++)
{
@@ -3314,7 +3314,7 @@
if (grayscale != MagickFalse)
{
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -3384,7 +3384,7 @@
Negate image.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -3593,7 +3593,7 @@
image->filename);
(void) ResetMagickMemory(sigmoidal_map,0,(MaxMap+1)*sizeof(*sigmoidal_map));
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (i=0; i <= (long) MaxMap; i++)
{
@@ -3623,7 +3623,7 @@
Sigmoidal-contrast enhance colormap.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (i=0; i < (long) image->colors; i++)
{
@@ -3649,7 +3649,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
diff --git a/magick/fourier.c b/magick/fourier.c
index 90dc015..b98c32d 100644
--- a/magick/fourier.c
+++ b/magick/fourier.c
@@ -654,7 +654,7 @@
status=MagickTrue;
is_gray=IsGrayImage(image,exception);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (i=0L; i < 5L; i++)
{
@@ -1197,7 +1197,7 @@
if ((is_gray != MagickFalse) && (images->next != (Image *) NULL))
is_gray=IsGrayImage(images->next,exception);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (i=0L; i < 5L; i++)
{
diff --git a/magick/fx.c b/magick/fx.c
index e450c2a..6670e96 100644
--- a/magick/fx.c
+++ b/magick/fx.c
@@ -333,7 +333,7 @@
image_view=AcquireCacheView(image);
noise_view=AcquireCacheView(noise_image);
#if defined(MAGICKCORE_OPENMP_SUPPORT_DEBUG)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -489,7 +489,7 @@
image_view=AcquireCacheView(image);
shift_view=AcquireCacheView(shift_image);
#if defined(MAGICKCORE_OPENMP_SUPPORT_DEBUG)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -736,7 +736,7 @@
image_view=AcquireCacheView(image);
colorize_view=AcquireCacheView(colorize_image);
#if defined(MAGICKCORE_OPENMP_SUPPORT_DEBUG)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -958,7 +958,7 @@
image_view=AcquireCacheView(image);
convolve_view=AcquireCacheView(convolve_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1473,7 +1473,7 @@
random_info=AcquireRandomInfoThreadSet();
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1705,7 +1705,7 @@
progress=0;
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -3541,7 +3541,7 @@
progress=0;
fx_view=AcquireCacheView(fx_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) fx_image->rows; y++)
{
@@ -3744,7 +3744,7 @@
image_view=AcquireCacheView(image);
implode_view=AcquireCacheView(implode_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -3966,7 +3966,7 @@
image_view=AcquireCacheView(morph_image);
morph_view=AcquireCacheView(morph_images);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) morph_images->rows; y++)
{
@@ -4593,7 +4593,7 @@
image_view=AcquireCacheView(image);
recolor_view=AcquireCacheView(recolor_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -4806,7 +4806,7 @@
image_view=AcquireCacheView(image);
sepia_view=AcquireCacheView(sepia_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -4964,7 +4964,7 @@
progress=0;
image_view=AcquireCacheView(border_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) border_image->rows; y++)
{
@@ -5253,7 +5253,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -5694,7 +5694,7 @@
image_view=AcquireCacheView(image);
swirl_view=AcquireCacheView(swirl_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -5891,7 +5891,7 @@
image_view=AcquireCacheView(image);
tint_view=AcquireCacheView(tint_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -6157,7 +6157,7 @@
resample_filter=AcquireResampleFilterThreadSet(image,MagickTrue,exception);
wave_view=AcquireCacheView(wave_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) wave_image->rows; y++)
{
diff --git a/magick/image.c b/magick/image.c
index 798df47..24230f1 100644
--- a/magick/image.c
+++ b/magick/image.c
@@ -550,7 +550,7 @@
y_offset-=geometry.y;
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1091,7 +1091,7 @@
progress=0;
combine_view=AcquireCacheView(combine_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) combine_image->rows; y++)
{
@@ -1941,7 +1941,7 @@
GetMagickPixelPacket(image,&zero);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -2401,7 +2401,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -2688,7 +2688,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -2864,7 +2864,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -3531,7 +3531,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
diff --git a/magick/paint.c b/magick/paint.c
index 38da0f6..77ac19e 100644
--- a/magick/paint.c
+++ b/magick/paint.c
@@ -601,7 +601,7 @@
image_view=AcquireCacheView(image);
paint_view=AcquireCacheView(paint_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -790,7 +790,7 @@
GetMagickPixelPacket(image,&zero);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -932,7 +932,7 @@
GetMagickPixelPacket(image,&zero);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1062,7 +1062,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
diff --git a/magick/prepress.c b/magick/prepress.c
index 1d03455..5c65e9f 100644
--- a/magick/prepress.c
+++ b/magick/prepress.c
@@ -109,7 +109,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
diff --git a/magick/profile.c b/magick/profile.c
index bc83871..795b336 100644
--- a/magick/profile.c
+++ b/magick/profile.c
@@ -1154,7 +1154,7 @@
progress=0;
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
diff --git a/magick/quantize.c b/magick/quantize.c
index 038db65..1fb3c3c 100644
--- a/magick/quantize.c
+++ b/magick/quantize.c
@@ -3022,7 +3022,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -3098,7 +3098,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
diff --git a/magick/resize.c b/magick/resize.c
index d113354..33b1f78 100644
--- a/magick/resize.c
+++ b/magick/resize.c
@@ -2336,7 +2336,7 @@
image_view=AcquireCacheView(image);
sample_view=AcquireCacheView(sample_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) sample_image->rows; y++)
{
diff --git a/magick/segment.c b/magick/segment.c
index 4e06245..6b67320 100644
--- a/magick/segment.c
+++ b/magick/segment.c
@@ -520,7 +520,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
diff --git a/magick/shear.c b/magick/shear.c
index 5755795..7759d84 100644
--- a/magick/shear.c
+++ b/magick/shear.c
@@ -706,7 +706,7 @@
status=MagickTrue;
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -757,7 +757,7 @@
RadonProjection(source_cells,destination_cells,-1,projection);
(void) ResetRadonCells(source_cells);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1074,7 +1074,7 @@
*/
GetPixelCacheTileSize(image,&tile_width,&tile_height);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress, status)
+ #pragma omp parallel for shared(progress, status)
#endif
for (tile_y=0; tile_y < (long) image->rows; tile_y+=tile_height)
{
@@ -1188,7 +1188,7 @@
Rotate 180 degrees.
*/
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress, status)
+ #pragma omp parallel for shared(progress, status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1264,7 +1264,7 @@
*/
GetPixelCacheTileSize(image,&tile_width,&tile_height);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress, status)
+ #pragma omp parallel for shared(progress, status)
#endif
for (tile_y=0; tile_y < (long) image->rows; tile_y+=tile_height)
{
@@ -1460,7 +1460,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress, status)
+ #pragma omp parallel for shared(progress, status)
#endif
for (y=0; y < (long) height; y++)
{
@@ -1680,7 +1680,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress, status)
+ #pragma omp parallel for shared(progress, status)
#endif
for (x=0; x < (long) width; x++)
{
diff --git a/magick/statistic.c b/magick/statistic.c
index 3c5f6d3..d21d679 100644
--- a/magick/statistic.c
+++ b/magick/statistic.c
@@ -228,7 +228,7 @@
number_images=GetImageListLength(image);
average_view=AcquireCacheView(average_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) average_image->rows; y++)
{
@@ -420,7 +420,7 @@
status=MagickTrue;
GetMagickPixelPacket(image,&zero);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -576,7 +576,7 @@
p=image->colormap;
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (i=0; i < (long) image->colors; i++)
{
@@ -617,7 +617,7 @@
}
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1576,7 +1576,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1635,7 +1635,7 @@
p=image->colormap;
range=GetQuantumRange(depth);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (i=0; i < (long) image->colors; i++)
{
diff --git a/magick/threshold.c b/magick/threshold.c
index 8113da1..40c368b 100644
--- a/magick/threshold.c
+++ b/magick/threshold.c
@@ -192,7 +192,7 @@
image_view=AcquireCacheView(image);
threshold_view=AcquireCacheView(threshold_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -386,7 +386,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -572,7 +572,7 @@
progress=0;
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -747,7 +747,7 @@
exception=(&image->exception);
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1477,7 +1477,7 @@
progress=0;
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1696,7 +1696,7 @@
random_info=AcquireRandomInfoThreadSet();
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -1773,7 +1773,7 @@
random_info=AcquireRandomInfoThreadSet();
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -2000,7 +2000,7 @@
progress=0;
image_view=AcquireCacheView(image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
diff --git a/magick/transform.c b/magick/transform.c
index fc3168c..b0b6c89 100644
--- a/magick/transform.c
+++ b/magick/transform.c
@@ -585,7 +585,7 @@
image_view=AcquireCacheView(image);
crop_view=AcquireCacheView(crop_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) crop_image->rows; y++)
{
@@ -713,7 +713,7 @@
image_view=AcquireCacheView(image);
excerpt_view=AcquireCacheView(excerpt_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) excerpt_image->rows; y++)
{
@@ -894,7 +894,7 @@
image_view=AcquireCacheView(image);
flip_view=AcquireCacheView(flip_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) flip_image->rows; y++)
{
@@ -1012,7 +1012,7 @@
image_view=AcquireCacheView(image);
flop_view=AcquireCacheView(flop_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) flop_image->rows; y++)
{
@@ -1123,7 +1123,7 @@
source_view=AcquireCacheView(source);
destination_view=AcquireCacheView(destination);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(status)
+ #pragma omp parallel for shared(status)
#endif
for (y=0; y < (long) rows; y++)
{
@@ -1438,7 +1438,7 @@
image_view=AcquireCacheView(image);
splice_view=AcquireCacheView(splice_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) splice_geometry.y; y++)
{
@@ -1513,7 +1513,7 @@
}
}
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=(long) (splice_geometry.y+splice_geometry.height);
y < (long) splice_image->rows; y++)
@@ -1875,7 +1875,7 @@
image_view=AcquireCacheView(image);
transpose_view=AcquireCacheView(transpose_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
@@ -2003,7 +2003,7 @@
image_view=AcquireCacheView(image);
transverse_view=AcquireCacheView(transverse_image);
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=0; y < (long) image->rows; y++)
{
diff --git a/wand/pixel-view.c b/wand/pixel-view.c
index 2179dd0..9f4ce7b 100644
--- a/wand/pixel-view.c
+++ b/wand/pixel-view.c
@@ -285,7 +285,7 @@
progress=0;
exception=destination->exception;
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=source->region.y; y < (long) source->region.height; y++)
{
@@ -545,7 +545,7 @@
status=MagickTrue;
progress=0;
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=source->region.y; y < (long) source->region.height; y++)
{
@@ -991,7 +991,7 @@
progress=0;
exception=destination->exception;
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=destination->region.y; y < (long) destination->region.height; y++)
{
@@ -1125,7 +1125,7 @@
progress=0;
exception=destination->exception;
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=source->region.y; y < (long) source->region.height; y++)
{
@@ -1283,7 +1283,7 @@
progress=0;
exception=source->exception;
#if defined(_OPENMP) && (_OPENMP >= 200203)
- #pragma omp parallel for schedule(static,1) shared(progress,status)
+ #pragma omp parallel for shared(progress,status)
#endif
for (y=source->region.y; y < (long) source->region.height; y++)
{