Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Let's answer your first question, is ImageMagick OpenMP compatible? Why yes, since most of its algorithms are OpenMP enabled. You can verify like this:
We don't understand the question. ImageMagick already is OpenMP enabled so you simply run any of the algorithms within ImageMagick and it will automatically divide the problem set up to run on each of the cores on your system simultaneously. If you are asking how to code in OpenMP, that is beyond the scope of this forum.
no. i write my code, and it runs fine with openMP on my system. But when i include <Magick++.h> header file it fails to compile ( no matter if i have used anything of Magick or not ). and gives me that error message.
Did you remember to include omp.h? We added an include for the OpenMP header file to a simple Magick++ source module with some simple OMP code and it compiled without complaint.